Changes between Version 3 and Version 4 of Ticket #27647
- Timestamp:
- Dec 27, 2016, 9:54:34 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27647
- Property Has patch set
-
Ticket #27647 – Description
v3 v4 10 10 11 11 I propose that `autoreload.py` be refactored to use a thread-safe implementation either by the subprocess module or by other alternative implementation. 12 13 **Update**: I added a preliminary patch implementation up for review that implements a fix for Python 2.4+ in [https://github.com/django/djangopull/7748] by using the recommended `subprocess.call()` instead of the non-thread-safe `os.spawnve()` which was added in 2005. 12 14 13 15 ----