mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 12:14:27 +08:00
stubtest: fix whitelists (#4513)
Downstream of the reintroduction of py39 to CI / running the unused whitelist entry flow in #4512 Co-authored-by: hauntsaninja <>
This commit is contained in:
@@ -28,6 +28,7 @@ collections.UserString.maketrans
|
||||
contextlib._GeneratorContextManager.__init__
|
||||
ctypes.CDLL.__init__
|
||||
fractions.Fraction.__new__ # private _normalize param was made keyword-only in Python 3.6
|
||||
hmac.HMAC.__init__
|
||||
importlib.metadata
|
||||
importlib.resources
|
||||
io.StringIO.readline
|
||||
@@ -44,6 +45,8 @@ os.DirEntry
|
||||
os.utime
|
||||
plistlib.Dict.__init__
|
||||
pyexpat.XMLParserType.ExternalEntityParserCreate
|
||||
random.Random.randrange # missing undocumented arg _int
|
||||
random.randrange # missing undocumented arg _int
|
||||
smtpd.SMTPChannel.__init__
|
||||
smtpd.SMTPServer.__init__
|
||||
sre_compile.dis
|
||||
|
||||
@@ -24,6 +24,7 @@ copy.PyStringMap
|
||||
ctypes.CDLL.__init__
|
||||
email.message.MIMEPart.as_string
|
||||
enum.Enum._generate_next_value_
|
||||
hmac.HMAC.__init__
|
||||
importlib.metadata
|
||||
importlib.resources
|
||||
io.StringIO.readline
|
||||
@@ -35,6 +36,8 @@ nntplib._NNTPBase.starttls
|
||||
os.utime
|
||||
plistlib.Dict.__init__
|
||||
pyexpat.XMLParserType.ExternalEntityParserCreate
|
||||
random.Random.randrange # missing undocumented arg _int
|
||||
random.randrange # missing undocumented arg _int
|
||||
secrets.SystemRandom.getstate
|
||||
smtplib.SMTP.sendmail
|
||||
sre_compile.dis
|
||||
|
||||
@@ -30,6 +30,7 @@ dataclasses.Field.__init__
|
||||
dataclasses.field
|
||||
email.message.MIMEPart.as_string
|
||||
enum.Enum._generate_next_value_
|
||||
hmac.HMAC.__init__
|
||||
http.client.HTTPSConnection.__init__
|
||||
http.server.SimpleHTTPRequestHandler.__init__
|
||||
importlib.metadata
|
||||
@@ -41,6 +42,8 @@ nntplib._NNTPBase.starttls
|
||||
os.utime
|
||||
pyexpat.XMLParserType.ExternalEntityParserCreate
|
||||
queue.SimpleQueue.__init__
|
||||
random.Random.randrange # missing undocumented arg _int
|
||||
random.randrange # missing undocumented arg _int
|
||||
secrets.SystemRandom.getstate
|
||||
smtplib.SMTP.sendmail
|
||||
sre_constants.RANGE_IGNORE
|
||||
|
||||
@@ -65,6 +65,8 @@ nntplib._NNTPBase.starttls
|
||||
pickle.Pickler.reducer_override
|
||||
platform.DEV_NULL
|
||||
queue.SimpleQueue.__init__
|
||||
random.Random.randrange # missing undocumented arg _int
|
||||
random.randrange # missing undocumented arg _int
|
||||
secrets.SystemRandom.getstate
|
||||
select.epoll.register
|
||||
smtplib.SMTP.sendmail
|
||||
|
||||
Reference in New Issue
Block a user