unicodedata-reader 1.0.0__tar.gz → 1.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/PKG-INFO +1 -1
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/pyproject.toml +1 -1
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/set.py +6 -3
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/LICENSE +0 -0
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/README.md +0 -0
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/__init__.py +0 -0
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/__main__.py +0 -0
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/bidi_brackets.py +0 -0
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/cli.py +0 -0
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/compressor.py +0 -0
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/east_asian_width.py +0 -0
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/emoji.py +0 -0
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/entry.py +0 -0
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/general_category.py +0 -0
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/line_break.py +0 -0
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/reader.py +0 -0
- {unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/vertical_orientation.py +0 -0
|
@@ -16,14 +16,17 @@ class Set(object):
|
|
|
16
16
|
def __iter__(self) -> Iterable[int]:
|
|
17
17
|
return self.set.__iter__()
|
|
18
18
|
|
|
19
|
-
def __isub__(self, other: 'Set') ->
|
|
19
|
+
def __isub__(self, other: 'Set') -> 'Set':
|
|
20
20
|
self.set -= other.set
|
|
21
|
+
return self
|
|
21
22
|
|
|
22
|
-
def __iand__(self, other: 'Set') ->
|
|
23
|
+
def __iand__(self, other: 'Set') -> 'Set':
|
|
23
24
|
self.set &= other.set
|
|
25
|
+
return self
|
|
24
26
|
|
|
25
|
-
def __ior__(self, other: 'Set') ->
|
|
27
|
+
def __ior__(self, other: 'Set') -> 'Set':
|
|
26
28
|
self.set |= other.set
|
|
29
|
+
return self
|
|
27
30
|
|
|
28
31
|
def add(self, code: int) -> None:
|
|
29
32
|
self.set.add(code)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/east_asian_width.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/general_category.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{unicodedata_reader-1.0.0 → unicodedata_reader-1.0.1}/unicodedata_reader/vertical_orientation.py
RENAMED
|
File without changes
|