@@ -9,17 +9,14 @@ _collections_abc.ValuesView.__reversed__
9
9
_weakref.ProxyType.__reversed__ # Doesn't really exist
10
10
asyncio.Future.__init__ # Usually initialized from c object
11
11
asyncio.futures.Future.__init__ # Usually initialized from c object
12
- builtins.dict.get
13
12
builtins.float.__setformat__ # Internal method for CPython test suite
14
13
builtins.property.__set_name__ # Doesn't actually exist
15
14
contextlib.AbstractAsyncContextManager.__class_getitem__
16
15
contextlib.AbstractContextManager.__class_getitem__
17
- enum.Enum._generate_next_value_
18
16
fractions.Fraction.__new__ # overload is too complicated for stubtest to resolve
19
17
gettext.install
20
18
gettext.translation
21
19
hmac.new # Stub is a white lie; see comments in the stub
22
- http.server.SimpleHTTPRequestHandler.__init__ # *args is expanded
23
20
ipaddress.IPv4Interface.hostmask
24
21
ipaddress.IPv6Interface.hostmask
25
22
ipaddress._BaseNetwork.broadcast_address
@@ -31,15 +28,13 @@ platform.uname_result.__match_args__
31
28
platform.uname_result.__new__
32
29
platform.uname_result._fields
33
30
platform.uname_result.processor
34
- re.Pattern.scanner # Undocumented and not useful. #6405
35
31
sys.UnraisableHookArgs # Not exported from sys
36
32
tkinter.Tk.split
37
33
types.GenericAlias.__getattr__
38
34
types.GenericAlias.__mro_entries__
39
35
types.GenericAlias.__call__ # Would be complicated to fix properly, Any could silence problems. #6392
40
36
typing._SpecialForm.__mro_entries__
41
37
typing.ForwardRef._evaluate
42
- typing._SpecialForm.__init__
43
38
typing._TypedDict.__delitem__
44
39
typing._TypedDict.__ior__
45
40
typing._TypedDict.__or__
@@ -76,9 +71,6 @@ _csv.Reader
76
71
_csv.Writer
77
72
asynchat.__warningregistry__ # Removal planned for 3.12, can add if someone needs this
78
73
bdb.Breakpoint.clearBreakpoints
79
- distutils.dist.DistributionMetadata.set_classifiers
80
- distutils.dist.DistributionMetadata.set_keywords
81
- distutils.dist.DistributionMetadata.set_platforms
82
74
distutils.util.get_host_platform
83
75
functools.partial.__vectorcalloffset__ # undocumented implementation detail
84
76
inspect.Signature.from_builtin # Removed in 3.11, can add if someone needs this
@@ -89,7 +81,6 @@ multiprocessing.managers.SharedMemoryServer.public
89
81
multiprocessing.managers.SharedMemoryServer.release_segment
90
82
multiprocessing.managers.SharedMemoryServer.shutdown
91
83
multiprocessing.managers.SharedMemoryServer.track_segment
92
- typing._SpecialForm.__call__
93
84
94
85
# ==========
95
86
# Related to positional-only arguments
@@ -152,7 +143,6 @@ ast.Index.__new__
152
143
ast.NameConstant.__new__
153
144
ast.Num.__new__
154
145
ast.Str.__new__
155
- contextvars.Context.__init__
156
146
queue.SimpleQueue.__init__
157
147
xml.etree.ElementTree.XMLParser.__init__
158
148
xml.etree.cElementTree.XMLParser.__init__
@@ -172,21 +162,9 @@ typing.SupportsRound.__init__
172
162
173
163
ftplib.FTP.trust_server_pasv_ipv4_address # Dangerous to use, intentionally undocumented, intentionally missing from typeshed. #6154
174
164
os.PathLike.__class_getitem__ # PathLike is a protocol; we don't expect all PathLike classes to implement class_getitem
175
- ssl.PROTOCOL_SSLv3 # Depends on ssl compilation
176
- ssl.RAND_egd # Depends on openssl compilation
177
165
types.CodeType.replace # stubtest thinks default values are None but None doesn't work at runtime
178
166
_ast.ImportFrom.level # None on the class, but never None on instances
179
167
ast.ImportFrom.level # None on the class, but never None on instances
180
168
181
- # These enums derive from (str, Enum). See comment in py3_common.txt
182
- pstats.SortKey.__new__
183
- tkinter.EventType.__new__
184
-
185
169
# White lies around defaults
186
- dataclasses.field
187
170
dataclasses.KW_ONLY
188
-
189
- # Runtime signature is incorrect (https://github.com/python/cpython/issues/93021)
190
- types.ClassMethodDescriptorType.__get__
191
- types.MethodDescriptorType.__get__
192
- types.WrapperDescriptorType.__get__
0 commit comments