File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -58,12 +58,6 @@ extern "C" {
58
58
pub fn PyDict_MergeFromSeq2 ( d : * mut PyObject , seq2 : * mut PyObject , _override : c_int ) -> c_int ;
59
59
#[ cfg_attr( PyPy , link_name = "PyPyDict_GetItemString" ) ]
60
60
pub fn PyDict_GetItemString ( dp : * mut PyObject , key : * const c_char ) -> * mut PyObject ;
61
- #[ cfg( Py_3_13 ) ]
62
- pub fn PyDict_GetItemRef (
63
- dp : * mut PyObject ,
64
- key : * mut PyObject ,
65
- result : * mut * mut PyObject ,
66
- ) -> c_int ;
67
61
#[ cfg_attr( PyPy , link_name = "PyPyDict_SetItemString" ) ]
68
62
pub fn PyDict_SetItemString (
69
63
dp : * mut PyObject ,
@@ -72,6 +66,12 @@ extern "C" {
72
66
) -> c_int ;
73
67
#[ cfg_attr( PyPy , link_name = "PyPyDict_DelItemString" ) ]
74
68
pub fn PyDict_DelItemString ( dp : * mut PyObject , key : * const c_char ) -> c_int ;
69
+ #[ cfg( Py_3_13 ) ]
70
+ pub fn PyDict_GetItemRef (
71
+ dp : * mut PyObject ,
72
+ key : * mut PyObject ,
73
+ result : * mut * mut PyObject ,
74
+ ) -> c_int ;
75
75
// skipped 3.10 / ex-non-limited PyObject_GenericGetDict
76
76
}
77
77
You can’t perform that action at this time.
0 commit comments