diff options
author | jbj <devnull@localhost> | 2002-07-14 21:23:29 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-07-14 21:23:29 +0000 |
commit | 3ea74aa3c7203c10ad97326778e22b1e654eefc7 (patch) | |
tree | 6968b695ccf7c4b0e8539eff13a1263770a72a70 /python/rpmte-py.h | |
parent | 8caf68303188699c1a1d9499c53a43794a86d922 (diff) | |
download | librpm-tizen-3ea74aa3c7203c10ad97326778e22b1e654eefc7.tar.gz librpm-tizen-3ea74aa3c7203c10ad97326778e22b1e654eefc7.tar.bz2 librpm-tizen-3ea74aa3c7203c10ad97326778e22b1e654eefc7.zip |
- python: sanity check fixes on rpmts/rpmte methods.
CVS patchset: 5554
CVS date: 2002/07/14 21:23:29
Diffstat (limited to 'python/rpmte-py.h')
-rw-r--r-- | python/rpmte-py.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/python/rpmte-py.h b/python/rpmte-py.h index 4126a66e9..18b626704 100644 --- a/python/rpmte-py.h +++ b/python/rpmte-py.h @@ -12,8 +12,10 @@ typedef struct rpmteObject_s { rpmte te; } rpmteObject; +/*@unchecked@*/ extern PyTypeObject rpmte_Type; -rpmteObject * rpmte_Wrap(rpmte te); +rpmteObject * rpmte_Wrap(rpmte te) + /*@*/; #endif |