Skip to content

Commit d941d4a

Browse files
committed
Update
1 parent bad95b8 commit d941d4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ type PyInt = i32;
1515
type PyInt = i64;
1616

1717
#[cfg(target_pointer_width = "32")]
18-
type PyLong = i64;
18+
type PyIntLong = i64;
1919
#[cfg(target_pointer_width = "64")]
20-
type PyLong = i128;
20+
type PyIntLong = i128;
2121

2222
#[pyfunction]
2323
fn sum(a: PyFloat, b: PyFloat) -> PyResult<PyFloat> {

0 commit comments

Comments
 (0)