Commit d5df4c24 authored by Stefan Behnel's avatar Stefan Behnel

PyDict_Copy() can be used for dict.copy()

parent d6a91a98
......@@ -106,7 +106,8 @@ builtin_types_table = [
("dict", "PyDict_Type", [("items", "O", "O", "PyDict_Items"),
("keys", "O", "O", "PyDict_Keys"),
("values","O", "O", "PyDict_Values")]),
("values","O", "O", "PyDict_Values"),
("copy", "O", "O", "PyDict_Copy")]),
("slice", "PySlice_Type", []),
("file", "PyFile_Type", []),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment