* The problem during debugging python within Emacs: NameError: name '__file__' is not defined
@ 2021-09-20 13:27 Hongyi Zhao
0 siblings, 0 replies; only message in thread
From: Hongyi Zhao @ 2021-09-20 13:27 UTC (permalink / raw)
To: help-gnu-emacs
I try to debug the following simple python script within Emacs with
the help of elpy:
###
import os
def realdirname(file):
return os.path.dirname(os.path.abspath(os.path.expanduser(file)))
script_realdirname = realdirname(__file__)
print(script_realdirname)
###
When I evaluate the buffer, I meet the following error:
----------------
Python 3.9.1 (default, Feb 10 2021, 15:30:33)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.23.1 -- An enhanced Interactive Python. Type '?' for help.
>>>
python.el: native completion setup loaded
>>> import os
...
...
... def realdirname(file):
... return os.path.dirname(os.path.abspath(os.path.expanduser(file)))
...
...
... script_realdirname = realdirname(__file__)
... print(script_realdirname)
Traceback (most recent call last):
File "/home/werner/Desktop/work/python/emacs-python-ide.py", line 8,
in <module>
script_realdirname = realdirname(__file__)
NameError: name '__file__' is not defined
>>>
----------------
After some googling, I still couldn't find any effective solution. How
to deal with this problem? Any hints will be highly appreciated.
Regards
--
Assoc. Prof. Hongyi Zhao <hongyi.zhao@gmail.com>
Theory and Simulation of Materials
Hebei Vocational University of Technology and Engineering
No. 473, Quannan West Street, Xindu District, Xingtai, Hebei province
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2021-09-20 13:27 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-20 13:27 The problem during debugging python within Emacs: NameError: name '__file__' is not defined Hongyi Zhao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).