You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a simple way to support trace python file without shebang and
be an executable file.
Fixed: namhyung#1890
Signed-off-by: Yi Hong <zouzou0208@gmail.com>
Add a simple way to support trace python file without shebang and
be an executable file.
Fixed: namhyung#1890
Signed-off-by: Yi Hong <zouzou0208@gmail.com>
The basic idea is to trace exactly what users do. Non-executable python script means it needs a python interpreter so I didn't support tracing the script directly.
for now, for python tracing work, we need the following steps.
shebang
in front of python filebut in 2020s most python scripts do not executable and some of them do not have shebang,
if we want to trace it, we must make sure the two steps done.
if we can just run
that would be better.
I would like to give a simple method and open one PR for that.
The text was updated successfully, but these errors were encountered: