Home | Trees | Indices | Help |
---|
|
object --+ | unicode_set
A set of Unicode characters, for language-specific strings for ``alphas``, ``nums``, ``alphanums``, and ``printables``. A unicode_set is defined by a list of ranges in the Unicode character set, in a class attribute ``_ranges``, such as:
_ranges = [(0x0020, 0x007e), (0x00a0, 0x00ff),]
A unicode set can also be defined using multiple inheritance of other unicode sets:
class CJK(Chinese, Japanese, Korean): pass
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from |
|
|||
|
|
|||
_ranges =
|
|
|||
Inherited from |
|
all non-whitespace characters in this range
|
all alphabetic characters in this range
|
all numeric digit characters in this range
|
all alphanumeric characters in this range
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Wed Dec 25 07:03:30 2019 | http://epydoc.sourceforge.net |