minimize use of "from module import *"

This statement was causing strange bugs because of namespace pollution. The
order of imports mattered because later "from module import *" statements would
overwrite modules imported earlier. Transitive imports also made it difficult
to figure out where an identifier was being imported.

This statement is still allowed in test code since nothing else should be
importing it.
diff --git a/tests/flow_matches.py b/tests/flow_matches.py
index 862633d..105b178 100644
--- a/tests/flow_matches.py
+++ b/tests/flow_matches.py
@@ -10,6 +10,7 @@
 import unittest
 import random
 
+from oftest import config
 import oftest.controller as controller
 import oftest.cstruct as ofp
 import oftest.message as message