# HG changeset patch # User Paul Boddie # Date 1482103609 -3600 # Node ID 74fa20c041351fe41117cd8f550b3bcbd302772e # Parent b5d91a23c7b0d22daba18967d4d04900e5d296e7 Import names from the common, encoders and errors modules explicitly. diff -r b5d91a23c7b0 -r 74fa20c04135 common.py --- a/common.py Sat Dec 17 17:15:57 2016 +0100 +++ b/common.py Mon Dec 19 00:26:49 2016 +0100 @@ -20,7 +20,7 @@ this program. If not, see . """ -from errors import * +from errors import InspectError from os import listdir, makedirs, remove from os.path import exists, isdir, join, split from results import ConstantValueRef, LiteralSequenceRef, NameRef diff -r b5d91a23c7b0 -r 74fa20c04135 translator.py --- a/translator.py Sat Dec 17 17:15:57 2016 +0100 +++ b/translator.py Mon Dec 19 00:26:49 2016 +0100 @@ -19,8 +19,13 @@ this program. If not, see . """ -from common import * -from encoders import * +from common import CommonModule, CommonOutput, first, get_builtin_module, \ + get_builtin_type, init_item, predefined_constants +from encoders import encode_access_instruction, encode_bound_reference, \ + encode_function_pointer, encode_literal_constant, \ + encode_literal_instantiator, encode_instantiator_pointer, \ + encode_path, encode_symbol, encode_type_attribute, \ + is_type_attribute from os.path import exists, join from os import makedirs from referencing import Reference