Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libplist
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwn
libplist
Commits
80b5e50a
Commit
80b5e50a
authored
Mar 18, 2013
by
Nikias Bassen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added PLIST_KEY support to cython bindings
parent
aea4cf6c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
plist.pxd
cython/plist.pxd
+4
-0
plist.pyx
cython/plist.pyx
+2
-0
No files found.
cython/plist.pxd
View file @
80b5e50a
...
...
@@ -19,6 +19,10 @@ cdef class Integer(Node):
cpdef set_value(self, object value)
cpdef int get_value(self)
cdef class Key(Node):
cpdef set_value(self, object value)
cpdef int get_value(self)
cdef class Real(Node):
cpdef set_value(self, object value)
cpdef float get_value(self)
...
...
cython/plist.pyx
View file @
80b5e50a
...
...
@@ -716,6 +716,8 @@ cdef object plist_t_to_node(plist_t c_plist, bint managed=True):
return Bool_factory(c_plist, managed)
if t == PLIST_UINT:
return Integer_factory(c_plist, managed)
if t == PLIST_KEY:
return Integer_factory(c_plist, managed)
if t == PLIST_REAL:
return Real_factory(c_plist, managed)
if t == PLIST_STRING:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment