Module containing backported language/library functionality.
|
_all(seq)
Returns True if all elements in the iterable are True. |
source code
|
|
|
_any(seq)
Returns True if any element of the iterable are True. |
source code
|
|
|
all(seq)
Returns True if all elements in the iterable are True. |
source code
|
|
|
any(seq)
Returns True if any element of the iterable are True. |
source code
|
|
|
partition(seq,
pred=bool)
Partition a list in two, based on the given predicate. |
source code
|
|
|
_partial(func,
*args,
**keywords)
Decorator with partial application of arguments and keywords. |
source code
|
|
string
|
RomanOrRounded(value,
rounding,
convert=True)
Try to round the value to the closest integer and return it as a
roman numeral. |
source code
|
|
string or typeof(val)
|
|
|
|