... but atexit wasn't necessary after all. The _httpd server should have had daemon_threads = True to automatically kill the threads that the server spawns to handle requests. (I made the server's thread a daemon, but it wasn't making the additional threads it spawned daemons.)
... but
atexit
wasn't necessary after all. The_httpd
server should have haddaemon_threads = True
to automatically kill the threads that the server spawns to handle requests. (I made the server's thread a daemon, but it wasn't making the additional threads it spawned daemons.)