[issue37418] Code execution without calling it
Emilio López Arias added the comment: why the code is executed? I could do a library or a package and include evil code instead of a print... El mié., 26 jun. 2019 a las 21:05, SilentGhost () escribió: > > SilentGhost added the comment: > > It seems you're misunderstan
[issue37418] Code execution without calling it
New submission from Emilio López Arias : Create a new python file: example.py def my_decorator(f): print("before") f() print("after") @my_decorator def my_function():