Let us walk on the 3-isogeny graph
Loading...
Searching...
No Matches
pip._vendor.idna.codec Namespace Reference

Data Structures

class  Codec
 
class  IncrementalDecoder
 
class  IncrementalEncoder
 
class  StreamReader
 
class  StreamWriter
 

Functions

codecs.CodecInfo getregentry ()
 

Variables

 _unicode_dots_re = re.compile('[\u002e\u3002\uff0e\uff61]')
 

Function Documentation

◆ getregentry()

codecs.CodecInfo getregentry ( )

Definition at line 102 of file codec.py.

102def getregentry() -> codecs.CodecInfo:
103 # Compatibility as a search_function for codecs.register()
104 return codecs.CodecInfo(
105 name='idna',
106 encode=Codec().encode, # type: ignore
107 decode=Codec().decode, # type: ignore
108 incrementalencoder=IncrementalEncoder,
109 incrementaldecoder=IncrementalDecoder,
110 streamwriter=StreamWriter,
111 streamreader=StreamReader,
112 )
for i

Variable Documentation

◆ _unicode_dots_re

_unicode_dots_re = re.compile('[\u002e\u3002\uff0e\uff61]')
protected

Definition at line 6 of file codec.py.