Let us walk on the 3-isogeny graph
Loading...
Searching...
No Matches
resultdict.py
Go to the documentation of this file.
1
from
typing
import
TYPE_CHECKING, Optional
2
3
if
TYPE_CHECKING:
4
# TypedDict was introduced in Python 3.8.
5
#
6
# TODO: Remove the else block and TYPE_CHECKING check when dropping support
7
# for Python 3.7.
8
from
typing
import
TypedDict
9
10
class
ResultDict
(TypedDict):
11
encoding: Optional[str]
12
confidence: float
13
language: Optional[str]
14
15
else
:
16
ResultDict = dict
pip._vendor.chardet.resultdict.ResultDict
Definition
resultdict.py:10
venv
lib
python3.12
site-packages
pip
_vendor
chardet
resultdict.py
Generated by
1.9.8