-
Notifications
You must be signed in to change notification settings - Fork 106
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
inspect.stack() role in code #21
Comments
Feel free to add a comment to the code:
|
@danijar - it is more clear from the comment, but is there a possiblity to move dealing with source file into own class? Handout class is busy constructing the html - I think there can be a separate class that provides access to source file: class Source:
def __init__(self, info: inspect.FrameInfo):
self._info = info
def filename(self) -> str:
"""Return path to a file where Handout object was created."""
return self._info.filename
def text(self) -> str:
"""Return contents of a file where Handout object was created."""
module = inspect.getmodule(self._info.frame)
return inspect.getsource(module)
def current_line(self) -> int:
"""Return current line in a file where Handout object was created."""
for info in inspect.stack():
if info.filename == self.filename():
return info.lineno
message = (
"Handout object was created in '{}' and accessed in '{}'. The file in "
"which you create the handout will be rendered. Thus, it only makes "
"sense to add to the handout from this file or functions called from "
"this file. You should not pass the handout object to a parent file.")
raise RuntimeError(message.format(self.filename(), info.filename))
class Handout:
def __init__(self, ...):
# ...
# The loop walks through the call stack, skips
# internal entries in handout.py, and breaks at
# the first external Python file. We assume this
# is the file is where a Handout instance was created.
for info in inspect.stack():
if info.filename == __file__:
continue
break
self.source = Source(info)
#later:
self.source.text()
self.source.current_line() As a benefit I see:
|
I'm not sure whether this restructuring is desirable. I think it would make more sense to move everything HTML related into a separate |
|
Exactly, that's what I was thinking. On a philosophical level, both could be separated out to separate different sources and targets. But for now I don't see why this would be necessary and I like to defer refactorings until they become necessary, because the "optimal solution" may change until then. |
What is the purpose of look-through in Handout class:
My first impression is that nothing happens in the loop.
The text was updated successfully, but these errors were encountered: