Various utility functions go here.
|
|
|
|
|
containsAny(str,
set)
Check whether sequence str contains ANY of the items in set. |
source code
|
|
|
containsAll(str,
set)
Check whether sequence str contains ALL of the items in set. |
source code
|
|
|
containsOnly(str,
set)
Check whether sequence str contains ONLY items in set. |
source code
|
|
|
splitext(path)
Same as os.path.splitext() but faster. |
source code
|
|
|
updrive(path)
Make the drive letter (if any) upper case.
This is useful because Windows is inconsitent on the case
of the drive letter, which can cause inconsistencies when
calculating command signatures. |
source code
|
|
|
get_environment_var(varstr)
Given a string, first determine if it looks like a reference
to a single environment variable, like "$FOO" or "${FOO}".
If so, return that variable with no decorations ("FOO").
If not, return None. |
source code
|
|
|
render_tree(root,
child_func,
prune=0,
margin=[ 0] ,
visited={ } )
Render a tree of nodes into an ASCII tree view. |
source code
|
|
|
|
|
print_tree(root,
child_func,
prune=0,
showtags=0,
margin=[ 0] ,
visited={ } )
Print a tree of nodes. |
source code
|
|
|
is_Dict(obj,
isinstance=<built-in function isinstance>,
DictTypes=dict, UserDict) |
source code
|
|
|
is_List(obj,
isinstance=<built-in function isinstance>,
ListTypes=( <type 'list'>, <class 'UserList.UserList'>) ) |
source code
|
|
|
is_Sequence(obj,
isinstance=<built-in function isinstance>,
SequenceTypes=( <type 'list'>, <type 'tuple'>, <class 'UserList.UserList'>) ) |
source code
|
|
|
is_Tuple(obj,
isinstance=<built-in function isinstance>,
tuple=<type 'tuple'>) |
source code
|
|
|
is_String(obj,
isinstance=<built-in function isinstance>,
StringTypes=( <type 'str'>, <type 'unicode'>, <class 'UserString.UserString'>) ) |
source code
|
|
|
is_Scalar(obj,
isinstance=<built-in function isinstance>,
StringTypes=( <type 'str'>, <type 'unicode'>, <class 'UserString.UserString'>) ,
SequenceTypes=( <type 'list'>, <type 'tuple'>, <class 'UserList.UserList'>) ) |
source code
|
|
|
do_flatten(sequence,
result,
isinstance=<built-in function isinstance>,
StringTypes=( <type 'str'>, <type 'unicode'>, <class 'UserString.UserString'>) ,
SequenceTypes=( <type 'list'>, <type 'tuple'>, <class 'UserList.UserList'>) ) |
source code
|
|
|
flatten(obj,
isinstance=<built-in function isinstance>,
StringTypes=( <type 'str'>, <type 'unicode'>, <class 'UserString.UserString'>) ,
SequenceTypes=( <type 'list'>, <type 'tuple'>, <class 'UserList.UserList'>) ,
do_flatten=<function do_flatten at 0x9af6ed4>)
Flatten a sequence to a non-nested list. |
source code
|
|
|
flatten_sequence(sequence,
isinstance=<built-in function isinstance>,
StringTypes=( <type 'str'>, <type 'unicode'>, <class 'UserString.UserString'>) ,
SequenceTypes=( <type 'list'>, <type 'tuple'>, <class 'UserList.UserList'>) ,
do_flatten=<function do_flatten at 0x9af6ed4>)
Flatten a sequence to a non-nested list. |
source code
|
|
|
to_String(s,
isinstance=<built-in function isinstance>,
str=<type 'str'>,
UserString=<class 'UserString.UserString'>,
BaseStringTypes=( <type 'str'>, <type 'unicode'>) ) |
source code
|
|
|
to_String_for_subst(s,
isinstance=<built-in function isinstance>,
str=<type 'str'>,
to_String=<function to_String at 0x9af6f7c>,
BaseStringTypes=( <type 'str'>, <type 'unicode'>) ,
SequenceTypes=( <type 'list'>, <type 'tuple'>, <class 'UserList.UserList'>) ,
UserString=<class 'UserString.UserString'>) |
source code
|
|
|
to_String_for_signature(obj,
to_String_for_subst=<function to_String_for_subst at 0x9af6fb4>,
AttributeError=<type 'exceptions.AttributeError'>) |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WhereIs(file,
path=None,
pathext=None,
reject=[ ] ) |
source code
|
|
|
PrependPath(oldpath,
newpath,
sep=' : ' ,
delete_existing=1,
canonicalize=None)
This prepends newpath elements to the given oldpath. Will only
add any particular path once (leaving the first one it encounters
and ignoring the rest, to preserve path order), and will
os.path.normpath and os.path.normcase all paths to help assure
this. This can also handle the case where the given old path
variable is a list instead of a string, in which case a list will
be returned instead of a string. |
source code
|
|
|
AppendPath(oldpath,
newpath,
sep=' : ' ,
delete_existing=1,
canonicalize=None)
This appends new path elements to the given old path. Will
only add any particular path once (leaving the last one it
encounters and ignoring the rest, to preserve path order), and
will os.path.normpath and os.path.normcase all paths to help
assure this. This can also handle the case where the given old
path variable is a list instead of a string, in which case a list
will be returned instead of a string. |
source code
|
|
|
get_native_path(path)
Transforms an absolute path into a native path for the system.
Non-Cygwin version, just leave the path alone. |
source code
|
|
|
|
|
|
|
adjustixes(fname,
pre,
suf,
ensure_suffix=False) |
source code
|
|
|
|
|
|
|
|
|
make_path_relative(path)
makes an absolute path name to a relative pathname. |
source code
|
|
|
AddMethod(obj,
function,
name=None)
Adds either a bound method to an instance or an unbound method to
a class. |
source code
|
|
|
RenameFunction(function,
name)
Returns a function identical to the specified function, but with
the specified name. |
source code
|
|
|
|
|
|
|
|
|
silent_intern(x)
Perform sys.intern() on the passed argument and return the result.
If the input is ineligible (e.g. a unicode string) the original argument is
returned and no exception is thrown. |
source code
|
|