I have a single python file that takes about an hour to run. Can I replace the whole file while its running without issues? I am aware if this question it does not address the concern of the python file being totally replaced with a new one.
Asked
Active
Viewed 553 times
1 Answers
0
Yes. The .py
file is read into memory, compiled and run without further access.

Tim Pietzcker
- 328,213
- 58
- 503
- 561