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
4f7d325c
Commit
4f7d325c
authored
Mar 22, 2014
by
Nikias Bassen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cython: Make sure to use plist_dict_set_item() instead of deprecated plist_dict_insert_item()
parent
41052423
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
plist.pyx
cython/plist.pyx
+2
-2
No files found.
cython/plist.pyx
View file @
4f7d325c
...
...
@@ -576,7 +576,7 @@ cdef plist_t create_dict_plist(object value=None):
if value is not None and isinstance(value, dict):
for key, item in value.items():
c_node = native_to_plist_t(item)
plist_dict_
inser
t_item(node, key, c_node)
plist_dict_
se
t_item(node, key, c_node)
c_node = NULL
return node
...
...
@@ -683,7 +683,7 @@ cdef class Dict(Node):
else:
n = plist_t_to_node(native_to_plist_t(value), False)
plist_dict_
inser
t_item(self._c_node, key, n._c_node)
plist_dict_
se
t_item(self._c_node, key, n._c_node)
self._map[key] = n
def __delitem__(self, key):
...
...
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