File tree Expand file tree Collapse file tree 4 files changed +16
-11
lines changed
Expand file tree Collapse file tree 4 files changed +16
-11
lines changed Original file line number Diff line number Diff line change 2222 final ,
2323)
2424
25- import pyunormalize ._unicode as unicode
2625from pyunormalize import (
26+ _unicode_data ,
2727 normalization ,
2828)
2929
3333
3434# Constants vendored from pyunormalize
3535
36- _NFC__QC_NO_OR_MAYBE : Final = unicode ._NFC__QC_NO_OR_MAYBE
37- _NFD__QC_NO : Final = unicode ._NFD__QC_NO
38- _NON_ZERO_CCC_TABLE : Final = unicode ._NON_ZERO_CCC_TABLE
39- _COMPOSITION_EXCLUSIONS : Final = unicode ._COMPOSITION_EXCLUSIONS
36+ _NFC__QC_NO_OR_MAYBE : Final = _unicode_data ._NFC__QC_NO_OR_MAYBE
37+ _NFD__QC_NO : Final = _unicode_data ._NFD__QC_NO
38+ _NON_ZERO_CCC_TABLE : Final = _unicode_data ._NON_ZERO_CCC_TABLE
39+ _COMPOSITION_EXCLUSIONS : Final = _unicode_data ._COMPOSITION_EXCLUSIONS
4040_COMPOSITE_BY_CDECOMP : Final [Dict [Tuple [int , Optional [int ]], int ]] = normalization ._COMPOSITE_BY_CDECOMP
4141_FULL_CDECOMP_BY_CHAR : Final [Dict [int , List [int ]]] = normalization ._FULL_CDECOMP_BY_CHAR
4242_LB : Final = normalization ._LB
Original file line number Diff line number Diff line change 1+ from typing import (
2+ Final ,
3+ )
4+
15from faster_web3 ._utils .events import (
26 EventLogErrorFlags ,
37)
48
5- DISCARD = EventLogErrorFlags .Discard
6- IGNORE = EventLogErrorFlags .Ignore
7- STRICT = EventLogErrorFlags .Strict
8- WARN = EventLogErrorFlags .Warn
9+ DISCARD : Final = EventLogErrorFlags .Discard
10+ IGNORE : Final = EventLogErrorFlags .Ignore
11+ STRICT : Final = EventLogErrorFlags .Strict
12+ WARN : Final = EventLogErrorFlags .Warn
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ requires = [
1212 " faster-eth-abi>=5.2,<5.3; platform_system != 'Linux' or platform_machine != 'i686'" ,
1313 " faster-hexbytes<3" ,
1414 " py-geth>=5.1.0; platform_system != 'Windows' and platform_machine != 'i686'" ,
15- " pyunormalize>=15 .0.0" ,
15+ " pyunormalize>=17 .0.0" ,
1616]
1717
1818[tool .autoflake ]
Original file line number Diff line number Diff line change 105105 "faster_web3/constants.py" ,
106106 "faster_web3/contract/utils.py" ,
107107 "faster_web3/gas_strategies" ,
108+ "faster_web3/logs.py" ,
108109 "faster_web3/providers/eth_tester" ,
109110 "faster_web3/providers/persistent/persistent_connection.py" ,
110111 "faster_web3/providers/persistent/request_processor.py" ,
213214 "typing-extensions>=4.0.1" ,
214215 "types-requests>=2.0.0" ,
215216 "websockets>=10.0.0,<16.0.0" ,
216- "pyunormalize>=15 .0.0" ,
217+ "pyunormalize>=17 .0.0" ,
217218 ],
218219 python_requires = ">=3.9, <4" ,
219220 extras_require = extras_require ,
You can’t perform that action at this time.
0 commit comments