id,summary,reporter,owner,description,type,status,component,version,severity,resolution,keywords,cc,stage,has_patch,needs_docs,needs_tests,needs_better_patch,easy,ui_ux 2036,"utils/autoreload.py falls over when ""thread"" module is not installed",plmeister@…,Adrian Holovaty,"Python's thread module is the interface to your systems pthreads library - and it's also an optional module, as not all systems support pthreads. Where pthreads are not available, the ""dummy_thread"" module can be used as a drop-in replacement.. easy to do..instead of: {{{ import os, sys, thread, time }}} use: {{{ import os, sys, time try: import thread except: import dummy_thread as thread }}} ",defect,closed,Core (Management commands),,normal,fixed,,,Unreviewed,0,0,0,0,0,0