Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Python: Dev
questions about memory management
 

Index | Next | Previous | View Flat


julia.lawall at lip6

Apr 28, 2012, 1:06 AM


Views: 79
Permalink
questions about memory management

In Python-3.2.3/Python/import.c, in the function
_PyImport_FixupExtensionUnicode, is any call to PyDict_DelItemString
needed before the final failure returns?

modules = PyImport_GetModuleDict();
if (PyDict_SetItemString(modules, name, mod) < 0)
return -1;
if (_PyState_AddModule(mod, def) < 0) {
PyDict_DelItemString(modules, name);
return -1;
}
if (def->m_size == -1) {
if (def->m_base.m_copy) {
/* Somebody already imported the module,
likely under a different name.
XXX this should really not happen. */
Py_DECREF(def->m_base.m_copy);
def->m_base.m_copy = NULL;
}
dict = PyModule_GetDict(mod);
if (dict == NULL)
return -1;
def->m_base.m_copy = PyDict_Copy(dict);
if (def->m_base.m_copy == NULL)
return -1;
}

In Python-3.2.3/Modules/ossaudiodev.c, in the function build_namelists, is
it intentional that labels is not freed in the last failure case:

if (PyModule_AddObject(module, "control_labels", labels) == -1)
goto error2;
if (PyModule_AddObject(module, "control_names", names) == -1)
goto error1;

return 0;

error2:
Py_XDECREF(labels);
error1:
Py_XDECREF(names);
return -1;

thanks,
julia
_______________________________________________
Python-Dev mailing list
Python-Dev [at] python
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: http://mail.python.org/mailman/options/python-dev/list-python-dev%40lists.gossamer-threads.com

Subject User Time
questions about memory management julia.lawall at lip6 Apr 28, 2012, 1:06 AM
    Re: questions about memory management solipsis at pitrou Apr 28, 2012, 11:13 AM

  Index | Next | Previous | View Flat
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.