fix_imports_test is almost done – the actual imports are mostly successful, with just a few annoying bugs in how it handles things with commas, like:
import http.client, winreg
and
from http import client, spam, eggs
The next step is getting the actual usage of those imported modules to work.
The next step after that, of course, is the fix_imports2 stuff. I think that this will still be split out into a separate module – otherwise, special cases would pollute the heck out of the code for the other one, and it would make debugging a nightmare.