-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: Warn top-level pyimport during pre-compilation #634
Open
tkf
wants to merge
1
commit into
JuliaPy:master
Choose a base branch
from
tkf:toplevel
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -471,12 +471,73 @@ function pyimport_e(name::AbstractString) | |
return o | ||
end | ||
|
||
""" | ||
called_from_toplevel() :: Bool | ||
|
||
Check if this function is called at module top-level scope than via | ||
`__init__`. | ||
""" | ||
function called_from_toplevel() | ||
for frame in stacktrace() | ||
frame.func === Symbol("top-level scope") && return true | ||
frame.func === :__init__ && return false | ||
end | ||
return true | ||
end | ||
|
||
const _disable_warn_pyimport_at_toplevel = Ref(false) | ||
|
||
function warn_pyimport_at_toplevel(name) | ||
ccall(:jl_generating_output, Cint, ()) == 0 && return | ||
_disable_warn_pyimport_at_toplevel[] && return | ||
called_from_toplevel() || return | ||
frames = stacktrace() | ||
if length(frames) >= 3 | ||
# frames[1]: this function | ||
# frames[2]: pyimport | ||
# frames[3]: user's code | ||
file = string(frames[3].file) | ||
line = frames[3].line | ||
location = " in $file:$line" | ||
else | ||
# something is terribly wrong, but try not fail | ||
location = "" | ||
end | ||
@error """ | ||
Python module `$name` imported at top-level scope$location. | ||
|
||
This is very likely to be a miss-use of PyCall API. Importing Python | ||
modules _MUST_ be done in `__init__` function. Please read: | ||
https://github.com/JuliaPy/PyCall.jl#using-pycall-from-julia-modules | ||
|
||
If importing Python code at import time cannot be avoided, use | ||
`disable_warn_pyimport_at_toplevel` to disable this warning within a | ||
restricted code block. | ||
""" | ||
end | ||
|
||
""" | ||
disable_warn_pyimport_at_toplevel(f) | ||
|
||
Run function `f` while disabling warning about top-level Python | ||
imports. | ||
""" | ||
function disable_warn_pyimport_at_toplevel(f) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It makes sense to warn from |
||
try | ||
_disable_warn_pyimport_at_toplevel[] = true | ||
f() | ||
finally | ||
_disable_warn_pyimport_at_toplevel[] = false | ||
end | ||
end | ||
|
||
""" | ||
pyimport(s::AbstractString) | ||
|
||
Import the Python module `s` (a string or symbol) and return a pointer to it (a `PyObject`). Functions or other symbols in the module may then be looked up by s[name] where name is a string (for the raw PyObject) or symbol (for automatic type-conversion). Unlike the @pyimport macro, this does not define a Julia module and members cannot be accessed with `s.name` | ||
""" | ||
function pyimport(name::AbstractString) | ||
warn_pyimport_at_toplevel(name) | ||
o = _pyimport(name) | ||
if ispynull(o) | ||
if pyerr_occurred() | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just realized I can do what
Base.depwarn
does here and pass_file
and_line
to@logmsg
. I'll do it if this entire patch makes sense.