File tree 2 files changed +4
-1
lines changed 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -266,7 +266,7 @@ fn add_shared_proto_slots(
266
266
let first_implemented = implemented_proto_fragments. remove( $first) ;
267
267
let second_implemented = implemented_proto_fragments. remove( $second) ;
268
268
if first_implemented || second_implemented {
269
- proto_impls. push( quote! { _pyo3:: $slot!( #ty) } )
269
+ proto_impls. push( quote! { _pyo3:: class :: impl_ :: $slot!( #ty) } )
270
270
}
271
271
} } ;
272
272
}
Original file line number Diff line number Diff line change @@ -183,6 +183,7 @@ macro_rules! define_pyclass_setattr_slot {
183
183
}
184
184
} } ;
185
185
}
186
+ pub use $generate_macro;
186
187
} ;
187
188
}
188
189
@@ -292,6 +293,7 @@ macro_rules! define_pyclass_binary_operator_slot {
292
293
}
293
294
} } ;
294
295
}
296
+ pub use $generate_macro;
295
297
} ;
296
298
}
297
299
@@ -484,6 +486,7 @@ macro_rules! generate_pyclass_pow_slot {
484
486
}
485
487
} } ;
486
488
}
489
+ pub use generate_pyclass_pow_slot;
487
490
488
491
pub trait PyClassAllocImpl < T > {
489
492
fn alloc_impl ( self ) -> Option < ffi:: allocfunc > ;
You can’t perform that action at this time.
0 commit comments