lib/pycall/libpython.rb in pycall-0.1.0.alpha.20170426 vs lib/pycall/libpython.rb in pycall-0.1.0.alpha.20170502
- old
+ new
@@ -325,10 +325,10 @@
attach_function :PyDict_GetItem, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], PyObjectStruct.by_ref
attach_function :PyDict_GetItemString, [PyObjectStruct.by_ref, :string], PyObjectStruct.by_ref
attach_function :PyDict_SetItem, [PyObjectStruct.by_ref, PyObjectStruct.by_ref, PyObjectStruct.by_ref], :int
attach_function :PyDict_SetItemString, [PyObjectStruct.by_ref, :string, PyObjectStruct.by_ref], :int
attach_function :PyDict_DelItem, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], :int
- attach_function :PyDict_DelItem, [PyObjectStruct.by_ref, :string], :int
+ attach_function :PyDict_DelItemString, [PyObjectStruct.by_ref, :string], :int
attach_function :PyDict_Size, [PyObjectStruct.by_ref], :ssize_t
attach_function :PyDict_Keys, [PyObjectStruct.by_ref], PyObjectStruct.by_ref
attach_function :PyDict_Values, [PyObjectStruct.by_ref], PyObjectStruct.by_ref
attach_function :PyDict_Items, [PyObjectStruct.by_ref], PyObjectStruct.by_ref
attach_function :PyDict_Contains, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], :int