diff options
| author | 2013-03-18 01:54:46 +0100 | |
|---|---|---|
| committer | 2013-03-18 01:54:46 +0100 | |
| commit | 80b5e50a7b6f23093e46020975c63de62e13b569 (patch) | |
| tree | b5ec1ec5798470d3141264a7d424017a5c24ab53 /cython/plist.pyx | |
| parent | aea4cf6cad522946018c6df85a01dfa6c5dfde60 (diff) | |
| download | libplist-80b5e50a7b6f23093e46020975c63de62e13b569.tar.gz libplist-80b5e50a7b6f23093e46020975c63de62e13b569.tar.bz2 | |
added PLIST_KEY support to cython bindings
Diffstat (limited to 'cython/plist.pyx')
| -rw-r--r-- | cython/plist.pyx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cython/plist.pyx b/cython/plist.pyx index 3716a9c..9b7eec9 100644 --- a/cython/plist.pyx +++ b/cython/plist.pyx | |||
| @@ -716,6 +716,8 @@ cdef object plist_t_to_node(plist_t c_plist, bint managed=True): | |||
| 716 | return Bool_factory(c_plist, managed) | 716 | return Bool_factory(c_plist, managed) |
| 717 | if t == PLIST_UINT: | 717 | if t == PLIST_UINT: |
| 718 | return Integer_factory(c_plist, managed) | 718 | return Integer_factory(c_plist, managed) |
| 719 | if t == PLIST_KEY: | ||
| 720 | return Integer_factory(c_plist, managed) | ||
| 719 | if t == PLIST_REAL: | 721 | if t == PLIST_REAL: |
| 720 | return Real_factory(c_plist, managed) | 722 | return Real_factory(c_plist, managed) |
| 721 | if t == PLIST_STRING: | 723 | if t == PLIST_STRING: |
