| 1384 | #ifdef SWIGPYTHON_BUILTIN |
| 1385 | |
| 1386 | SWIGRUNTIME PyObject * |
| 1387 | SwigPyObject_get___dict__(PyObject *v, PyObject *SWIGUNUSEDPARM(args)) |
| 1388 | { |
| 1389 | SwigPyObject *sobj = (SwigPyObject *)v; |
| 1390 | |
| 1391 | if (!sobj->dict) |
| 1392 | sobj->dict = PyDict_New(); |
| 1393 | |
| 1394 | Py_INCREF(sobj->dict); |
| 1395 | return sobj->dict; |
| 1396 | } |
| 1397 | |
| 1398 | #endif |
| 1399 |
nothing calls this directly
no outgoing calls
no test coverage detected