We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 746a0db commit 200c2b4Copy full SHA for 200c2b4
docs/src/pythoncall.md
@@ -130,6 +130,7 @@ pyissubclass
130
pyisinstance
131
pyhash
132
pyiter
133
+pynext
134
```
135
136
### Conversion to Julia
src/abstract/iter.jl
@@ -6,6 +6,14 @@ Equivalent to `iter(x)` in Python.
6
pyiter(x) = pynew(errcheck(@autopy x C.PyObject_GetIter(getptr(x_))))
7
export pyiter
8
9
+"""
10
+ pynext(x)
11
+
12
+Equivalent to `next(x)` in Python.
13
14
+pynext(x) = pybuiltins.next(x)
15
+export pynext
16
17
"""
18
unsafe_pynext(x)
19
0 commit comments