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 d1e80d6 commit ce7f9c9Copy full SHA for ce7f9c9
test/abstract.jl
@@ -214,13 +214,13 @@ end
214
@test_throws PyException pyiter(pybuiltins.True)
215
it = pyiter(pyrange(2))
216
x = PythonCall.unsafe_pynext(it)
217
- @test !PythonCall.ispynull(x)
+ @test !PythonCall.pyisnull(x)
218
@test pyeq(Bool, x, 0)
219
220
221
@test pyeq(Bool, x, 1)
222
223
- @test PythonCall.ispynull(x)
+ @test PythonCall.pyisnull(x)
224
end
225
226
@testset "number" begin
0 commit comments