|
|
|
|
|
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
|
|
|
|
|
get_environment_var(varstr)
Given a string, first determine if it looks like a reference
to a single environment variable, like "$FOO" or "${FOO}". |
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=DictTypes) |
source code
|
|
|
is_List(obj,
isinstance=<built-in function isinstance>,
ListTypes=list, UserList) |
source code
|
|
|
is_Sequence(obj,
isinstance=<built-in function isinstance>,
SequenceTypes=( <type 'list'>, <type 'tuple'>, <class UserList.UserList at 0x... ) |
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 at 0x... ) |
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 at 0x... ) |
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 at 0x... ,
do_flatten=<function do_flatten at 0x82ba534>)
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 at 0x... ,
do_flatten=<function do_flatten at 0x82ba534>)
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 at 0x829bf2c>,
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 0x83b717c>,
BaseStringTypes=( <type 'str'>, <type 'unicode'>) ,
SequenceTypes=( <type 'list'>, <type 'tuple'>, <class UserList.UserList at 0x... ,
UserString=<class UserString.UserString at 0x829bf2c>) |
source code
|
|
|
to_String_for_signature(obj,
to_String_for_subst=<function to_String_for_subst at 0x83b7924>,
AttributeError=<type 'exceptions.AttributeError'>) |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WhereIs(file,
path=False,
pathext=False,
reject=[ ] ) |
source code
|
|
|
PrependPath(oldpath,
newpath,
sep=' : ' ,
delete_existing=1,
canonicalize=False)
This prepends newpath elements to the given oldpath. |
source code
|
|
|
AppendPath(oldpath,
newpath,
sep=' : ' ,
delete_existing=1,
canonicalize=False)
This appends new path elements to the given old path. |
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=False)
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
|
|
|
|
|
|
|
|
|
|