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 28c7d88 commit 6f0221aCopy full SHA for 6f0221a
src/Convert/rules.jl
@@ -346,7 +346,7 @@ for N = 0:16
346
end
347
# Tuple with N elements plus Vararg
348
@eval function pyconvert_rule_iterable(
349
- ::Type{Tuple{$(Ts...),Vararg{V}}},
+ ::Type{Tuple{$(Ts...),V,Vararg{V}}},
350
xs::Py,
351
) where {$(Ts...),V}
352
xs = pytuple(xs)
test/Aqua.jl
@@ -1,6 +1,4 @@
1
@testitem "Aqua" begin
2
- # The unbound_args test fails on methods with signature like foo(::Type{Tuple{Vararg{V}}}) where V
3
- # Seems like a bug.
4
import Aqua
5
- Aqua.test_all(PythonCall, unbound_args = false)
+ Aqua.test_all(PythonCall)
6
0 commit comments