commit 1248d0cb7cee2c4a3fff7cff1269b27ca03b8764 Author: David Malcolm dmalcolm@redhat.com Date: Tue Sep 6 14:45:56 2011 -0400
cpychecker: implement Py_Initialize
libcpychecker/refcounts.py | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) --- diff --git a/libcpychecker/refcounts.py b/libcpychecker/refcounts.py index f689fff..c6decd1 100644 --- a/libcpychecker/refcounts.py +++ b/libcpychecker/refcounts.py @@ -951,6 +951,14 @@ class MyState(State): return self.make_transitions_for_fncall(stmt, s_success, s_failure)
######################################################################## + # Py_Initialize* + ######################################################################## + def impl_Py_Initialize(self, stmt): + # http://docs.python.org/c-api/init.html#Py_Initialize + # For now, treat it as a no-op: + return [self.mktrans_nop(stmt, 'Py_Initialize')] + + ######################################################################## # Py_InitModule* ######################################################################## def impl_Py_InitModule4_64(self, stmt):
gcc-python-plugin-commits@lists.stg.fedorahosted.org