From: Jeremy Stanley Date: Sat, 29 Jul 2017 15:01:08 +0000 (+0000) Subject: Use importlib in place of imp X-Git-Tag: 0.0.1~151 X-Git-Url: https://mudpy.org/gitweb?a=commitdiff_plain;ds=sidebyside;h=9d92e6288e8e14a7213912b6480e33a72392af07;hp=9d92e6288e8e14a7213912b6480e33a72392af07;p=mudpy.git Use importlib in place of imp As of Python 3.4, the newer importlib module supports the reload() function we need. Switch from the deprecated imp module, except before 3.4 where we will simply pretend imp is importlib for readability. ---