From: Jeremy Stanley Date: Sat, 19 Sep 2020 14:32:11 +0000 (+0000) Subject: Explicitly close files opened by selftest X-Git-Tag: 0.2.1~1 X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=commitdiff_plain;h=ed9b25ba4a86c6e969d35f053b69ae2ed5b1990f;hp=ed9b25ba4a86c6e969d35f053b69ae2ed5b1990f Explicitly close files opened by selftest Newer Python interpreters emit a warning during cleanup if open files are not closed prior to termination. Our selftest opens the pidfile for reading in a couple of places, as well as logfiles to capture stdout/stderr. Open them in context blocks so they will be closed on return rather than remaining open until the process ends. ---