Closed mhechthz closed 3 days ago
Works for me with python 3.11.6 on Windows. You could test if executing works first e.g.
import inspect
import executing
def test(expr):
source = executing.Source.executing(inspect.currentframe().f_back)
print(source.text()) # should print `test(a + b)`
a = 3
b = 4
test(a + b)
If it doesn't work then the problem is in executing, then you could debug the Source
class in executing.
I think it might be an incompatibility with some library or so.
In Python 3.10 and 3.12 the print is as expected, in my 3.11.6 the print is empty.
Please close this issue if it is solved to prevent comment cluttering. TQ
I had the same problem with a fresh venv and Python 3.11.7. I resolved it by replacing the complete /site-packages/executing folder by the most recent source distribution 2.0.1
See an implementation on www.salabim.org/peek/
@salabim did you mean to post https://github.com/gruns/icecream/issues/169#issuecomment-2461452780 in https://github.com/gruns/icecream/issues/186?
AnsgarNo, I did resolve my issue already some time ago as I mentioned in #169. Thank you for the great work. RainerAm 07.11.2024 um 16:00 schrieb Ansgar Grunseid @.***>: @salabim did you mean to post #169 (comment) in #186?
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you commented.Message ID: @.***>
@salabim did you mean to post #169 (comment) in #186?
Yes.
This was already in the issues but nevertheless I face this currently.
ic| Error: Failed to access the underlying source code for analysis. Was ic() invoked in a REPL (e.g. from the command line), a frozen application (e.g. packaged with PyInstaller), or did the underlying source code change during execution?
Windows 10, Python 3.11.6. On the same machine Python 3.10 and Python 3.12 work fine, but 3.11 not.