import glob try: from collections import UserList except ImportError: # no 'collections' module or no UserList in collections exec('from UserList import UserList') from TestCmd import * from TestCmd import __all__ __all__.extend([ 'TestCommon', 'exe_suffix', 'obj_suffix', 'shobj_prefix', 'shobj_suffix', 'lib_prefix', 'lib_suffix', 'dll_prefix', 'dll_suffix', ]) # Variables that describe the prefixes and suffixes on this system. if sys.platform == 'win32': exe_suffix = '.exe' obj_suffix = '.obj' shobj_suffix = '.obj' shobj_prefix = '' lib_prefix = '' lib_suffix = '.lib' dll_prefix = '' dll_suffix = '.dll'
import stat import string import sys import types import UserList from TestCmd import * from TestCmd import __all__ __all__.extend( [ "TestCommon", "exe_suffix", "obj_suffix", "shobj_prefix", "shobj_suffix", "lib_prefix", "lib_suffix", "dll_prefix", "dll_suffix", ] ) # Variables that describe the prefixes and suffixes on this system. if sys.platform == "win32": exe_suffix = ".exe" obj_suffix = ".obj" shobj_suffix = ".obj" shobj_prefix = "" lib_prefix = "" lib_suffix = ".lib"
import os.path import stat import string import sys import types import UserList from TestCmd import * from TestCmd import __all__ __all__.extend([ 'TestCommon', 'TestFailed', 'TestNoResult', 'exe_suffix', 'obj_suffix', 'shobj_suffix', 'lib_prefix', 'lib_suffix', 'dll_prefix', 'dll_suffix', ]) # Variables that describe the prefixes and suffixes on this system. if sys.platform == 'win32': exe_suffix = '.exe' obj_suffix = '.obj' shobj_suffix = '.obj' lib_prefix = '' lib_suffix = '.lib' dll_prefix = '' dll_suffix = '.dll'
import glob try: from collections import UserList except ImportError: # no 'collections' module or no UserList in collections exec('from UserList import UserList') from TestCmd import * from TestCmd import __all__ __all__.extend([ 'TestCommon', 'exe_suffix', 'obj_suffix', 'shobj_prefix', 'shobj_suffix', 'lib_prefix', 'lib_suffix', 'dll_prefix', 'dll_suffix', ]) try: sorted except NameError: # Pre-2.4 Python has no sorted() function. # # The pre-2.4 Python list.sort() method does not support # list.sort(key=) nor list.sort(reverse=) keyword arguments, so # we must implement the functionality of those keyword arguments # by hand instead of passing them to list.sort(). def sorted(iterable, cmp=None, key=None, reverse=False):