File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Overview of PyO3 Python object types
2
2
3
3
On first glance, PyO3 provides a huge number of different types that can be used
4
- to wrap or refer to Python objects. This page tries to give an overview of
4
+ to wrap or refer to Python objects. This page gives an overview of
5
5
their meaning, with examples when each type is best used.
6
6
7
7
* explain: pyclass
@@ -67,7 +67,7 @@ required for calling Python API on it.
67
67
### ` PyCell<SomeType> `
68
68
69
69
** Represents:** a reference to a ` PyClass ` instance which is wrapped in a Python
70
- object. The cell part is an analog to Rust 's ` RefCell ` to allow access to
70
+ object. The cell part is an analog to stdlib 's [ ` RefCell ` ] ( https://doc.rust-lang.org/std/cell/struct.RefCell.html ) to allow access to
71
71
` &mut ` references.
72
72
73
73
** Used:** for accessing pure-Rust API of the instance (members and functions
You can’t perform that action at this time.
0 commit comments