Trees | Indices | Help |
|
---|
|
Format a message
|
|||
|
|
|||
__package__ =
|
|
Format a string with the given dict. Be a bit more verbose than default python about the error cause. >>> format_str("%(foo)", {}) Traceback (most recent call last): ... GbpError: Failed to format %(foo): Missing value 'foo' in {} >>> format_str("%(foo)", {'foo': 'bar'}) Traceback (most recent call last): ... GbpError: Failed to format %(foo) with {'foo': 'bar'}: incomplete format >>> format_str("A %(foo)s is a %(bar)s", {'foo': 'dog', 'bar': 'mamal'}) 'A dog is a mamal' |
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Wed Oct 21 06:30:40 2015 | http://epydoc.sourceforge.net |