Skip to content

Commit e3eadd7

Browse files
committed
doc: Link to pyo3
1 parent b813011 commit e3eadd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/docs/python/compatibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Some F#/.NET types have counterparts in Python. Fable takes advantage of this to
1515

1616
- **Strings and booleans** behave the same in F# and Python.
1717
- **Chars** are compiled as Python strings of length 1.
18-
- **Numeric types** - Most numeric types are implemented using custom pyo3 wrapper types that maintain F#-style semantics while integrating with Python. Only `bigint` is translated to Python's native `int` type. See the [Numeric Types](#numeric-types) section for details.
18+
- **Numeric types** - Most numeric types are implemented in Rust using custom [PyO3](https://pyo3.rs/) wrapper types that maintain F#-style semantics while integrating with Python. Only `bigint` is translated to Python's native `int` type. See the [Numeric Types](#numeric-types) section for details.
1919
- **Arrays** compile to custom `FSharpArray` wrappers to maintain F# semantics.
2020
- **ResizeArray** compiles to Python `list`.
2121
- Any **IEnumerable** (or `seq`) can be traversed in Python using the iterator protocol (`__iter__`).

0 commit comments

Comments
 (0)