__format__ |
default object formatter |
__new__((S, ...) |
|
__reduce__ |
helper for pickle |
__reduce_ex__ |
helper for pickle |
__sizeof__(() -> int) |
size of object in memory, in bytes |
__subclasshook__ |
Abstract classes can override this to customize issubclass(). |
bidirectional(unichr) |
Returns the bidirectional class assigned to the Unicode character unichr as string. |
category(unichr) |
Returns the general category assigned to the Unicode character unichr as string. |
combining(unichr) |
Returns the canonical combining class assigned to the Unicode character unichr as integer. |
decimal(unichr[, default]) |
Returns the decimal value assigned to the Unicode character unichr as integer. |
decomposition(unichr) |
Returns the character decomposition mapping assigned to the Unicode character unichr as string. |
digit(unichr[, default]) |
Returns the digit value assigned to the Unicode character unichr as integer. |
east_asian_width(unichr) |
Returns the east asian width assigned to the Unicode character unichr as string. |
lookup(name) |
Look up character by name. |
mirrored(unichr) |
Returns the mirrored property assigned to the Unicode character unichr as integer. |
name(unichr[, default]) |
Returns the name assigned to the Unicode character unichr as a string. |
normalize(form, unistr) |
Return the normal form ‘form’ for the Unicode string unistr. |
numeric(unichr[, default]) |
Returns the numeric value assigned to the Unicode character unichr as float. |