# HG changeset patch # User Yuya Nishihara # Date 1567916635 -32400 # Node ID 5ccc08d02280a8db169a2e872b7c32f52d4283b6 # Parent 74d67c645278c144d9b1d855925ed7ed40edc7e4 rust-cpython: leverage py_shared_iterator::from_inner() where appropriate diff -r 74d67c645278 -r 5ccc08d02280 rust/hg-cpython/src/dirstate/dirs_multiset.rs --- a/rust/hg-cpython/src/dirstate/dirs_multiset.rs Sun Sep 08 13:08:59 2019 +0900 +++ b/rust/hg-cpython/src/dirstate/dirs_multiset.rs Sun Sep 08 13:23:55 2019 +0900 @@ -90,10 +90,10 @@ } def __iter__(&self) -> PyResult { let (leak_handle, leaked_ref) = unsafe { self.leak_immutable(py)? }; - DirsMultisetKeysIterator::create_instance( + DirsMultisetKeysIterator::from_inner( py, - RefCell::new(Some(leak_handle)), - RefCell::new(leaked_ref.iter()), + leak_handle, + leaked_ref.iter(), ) } diff -r 74d67c645278 -r 5ccc08d02280 rust/hg-cpython/src/ref_sharing.rs --- a/rust/hg-cpython/src/ref_sharing.rs Sun Sep 08 13:08:59 2019 +0900 +++ b/rust/hg-cpython/src/ref_sharing.rs Sun Sep 08 13:23:55 2019 +0900 @@ -309,10 +309,10 @@ /// /// def __iter__(&self) -> PyResult { /// let (leak_handle, leaked_ref) = unsafe { self.leak_immutable(py)? }; -/// MyTypeItemsIterator::create_instance( +/// MyTypeItemsIterator::from_inner( /// py, -/// RefCell::new(Some(leak_handle)), -/// RefCell::new(leaked_ref.iter()), +/// leak_handle, +/// leaked_ref.iter(), /// ) /// } /// });