Message156403
| Author |
vstinner |
| Recipients |
arigo, vstinner |
| Date |
2012年03月20日.12:53:59 |
| SpamBayes Score |
0.0005242252 |
| Marked as misclassified |
No |
| Message-id |
<1332248041.01.0.836544225331.issue14372@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
> (1) find any internal or external C function that returns a borrowed reference
Doc/data/refcounts.dat can be used for that:
PyCell_GET
PyDict_GetItem
PyDict_GetItemString
PyErr_Occurred
PyEval_GetBuiltins
PyEval_GetLocals
PyEval_GetGlobals
PyEval_GetFrame
PyFile_Name
PyFunction_GetClosure
PyFunction_GetCode
PyFunction_GetDefaults
PyFunction_GetGlobals
PyFunction_GetModule
Py_InitModule
Py_InitModule3
Py_InitModule4
PyImport_AddModule
PyImport_GetModuleDict
PyList_GET_ITEM
PyList_GetItem
PyMethod_Class
PyMethod_Function
PyMethod_GET_CLASS
PyMethod_GET_FUNCTION
PyMethod_GET_SELF
PyMethod_Self
PyModule_GetDict
PyObject_Init
PySequence_Fast_GET_ITEM
PySys_GetObject
PySys_GetXOptions
PyThreadState_GetDict
PyTuple_GET_ITEM
PyTuple_GetItem
PyWeakref_GET_OBJECT
PyWeakref_GetObject
(this list may be incomplete, it should be checked)
Not affected (always return NULL):
PyErr_NoMemory
PyErr_Set... |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2012年03月20日 12:54:01 | vstinner | set | recipients:
+ vstinner, arigo |
| 2012年03月20日 12:54:01 | vstinner | set | messageid: <1332248041.01.0.836544225331.issue14372@psf.upfronthosting.co.za> |
| 2012年03月20日 12:54:00 | vstinner | link | issue14372 messages |
| 2012年03月20日 12:53:59 | vstinner | create |
|