[issue28926] subprocess.Popen + Sqlalchemy doesn't wait for process

2021-02-14 Thread Irit Katriel
Irit Katriel added the comment: There isn't enough information here to understand what the issue is. If you are still having this issue in Python 3, please create a new ticket with code to reproduce it and information about the system you are using. -- resolution: -> rejected

[issue28926] subprocess.Popen + Sqlalchemy doesn't wait for process

2020-11-30 Thread Irit Katriel
Irit Katriel added the comment: Python 2.7 is no longer maintained. Are you seeing this issue in Python3 as well? Can you attached a script that reproduces the problem? (A script is always better than a verbal description). Information about the system on which you observed the issue can

[issue28926] subprocess.Popen + Sqlalchemy doesn't wait for process

2016-12-09 Thread Steven
New submission from Steven: Called subprocess.Popen("python_file.py", shell=True).wait(), which triggered a call to `Base.metadata.create_all(engine)` inside `python_file.py` This caused nothing after the `create_all(engine)` call to execute in `python_file.py` But, if I changed