(&self, _py: Python)
| 249 | } |
| 250 | |
| 251 | fn current_borrow_count(&self, _py: Python) -> usize { |
| 252 | self.borrow_count.load(Ordering::Relaxed) |
| 253 | } |
| 254 | |
| 255 | fn increase_borrow_count(&self, _py: Python) { |
| 256 | // this wraps around if there are more than usize::MAX borrowed |