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 2fc6479 commit e1f56beCopy full SHA for e1f56be
src/JlWrap/any.jl
@@ -26,7 +26,7 @@ function pyjlany_setattr(self, k_::Py, v_::Py)
26
k = Symbol(pyjl_attr_py2jl(pyconvert(String, k_)))
27
pydel!(k_)
28
v = pyconvert(Any, v_)
29
- if VERSION >= v"1.11.0-" && self isa Module && !isdefined(self, k)
+ if self isa Module && !isdefined(self, k)
30
# Fix for https://github.com/JuliaLang/julia/pull/54678
31
Base.Core.eval(self, Expr(:global, k))
32
end
0 commit comments