@@ -12,15 +12,12 @@ _collections_abc.MappingView.__class_getitem__
12
12
_collections_abc.ValuesView.__reversed__
13
13
_csv.Reader
14
14
_csv.Writer
15
- _operator.attrgetter.__vectorcalloffset__
16
- _operator.itemgetter.__vectorcalloffset__
17
15
argparse._MutuallyExclusiveGroup.add_mutually_exclusive_group
18
16
asynchat.__warningregistry__ # Removal planned for 3.12, can add if someone needs this
19
17
configparser.LegacyInterpolation.__init__
20
18
enum.Enum.__init__
21
19
fractions.Fraction.__new__ # overload is too complicated for stubtest to resolve
22
20
ftplib.FTP.trust_server_pasv_ipv4_address
23
- functools.partial.__vectorcalloffset__
24
21
ipaddress.IPv4Interface.hostmask
25
22
ipaddress.IPv6Interface.hostmask
26
23
ipaddress._BaseNetwork.broadcast_address
@@ -32,8 +29,6 @@ multiprocessing.managers.SharedMemoryServer.release_segment
32
29
multiprocessing.managers.SharedMemoryServer.shutdown
33
30
multiprocessing.managers.SharedMemoryServer.track_segment
34
31
multiprocessing.spawn._main
35
- operator.attrgetter.__vectorcalloffset__
36
- operator.itemgetter.__vectorcalloffset__
37
32
# platform.uname_result's processor field is now dynamically made to exist
38
33
platform.uname_result.__match_args__
39
34
platform.uname_result.__new__
@@ -93,7 +88,6 @@ os.path.join
93
88
_collections_abc.AsyncGenerator.athrow # async at runtime, deliberately not in the stub, see #7491. Pos-only differences also.
94
89
_weakref.ProxyType.__reversed__ # Doesn't really exist
95
90
builtins.property.__set_name__ # Doesn't actually exist
96
- enum.StrEnum.value # read-only property at runtime but too magical for stubtest
97
91
hmac.new # Stub is a white lie; see comments in the stub
98
92
http.HTTPMethod.description # mutable instance attribute at runtime but we pretend it's a property
99
93
pickle.Pickler.reducer_override # implemented in C pickler
@@ -103,25 +97,6 @@ types.GenericAlias.__mro_entries__
103
97
weakref.ProxyType.__reversed__ # Doesn't really exist
104
98
inspect._ParameterKind.description # Still exists, but stubtest can't see it
105
99
106
- # Inherits __init__ from typing.Protocol (https://github.com/python/mypy/issues/12820)
107
- importlib.abc.Traversable.__init__
108
- importlib.metadata.EntryPoint.__init__
109
- importlib.metadata.PackageMetadata.__init__
110
- importlib.metadata._meta.PackageMetadata.__init__
111
- importlib.metadata._meta.SimplePath.__init__
112
- typing.SupportsAbs.__init__
113
- typing.SupportsBytes.__init__
114
- typing.SupportsComplex.__init__
115
- typing.SupportsFloat.__init__
116
- typing.SupportsIndex.__init__
117
- typing.SupportsInt.__init__
118
- typing.SupportsRound.__init__
119
- wsgiref.types.ErrorStream.__init__
120
- wsgiref.types.FileWrapper.__init__
121
- wsgiref.types.InputStream.__init__
122
- wsgiref.types.StartResponse.__init__
123
- wsgiref.types._Readable.__init__
124
-
125
100
# C signature is broader than what is actually accepted
126
101
ast.Bytes.__new__
127
102
ast.Ellipsis.__new__
@@ -169,12 +144,6 @@ typing._TypedDict.values
169
144
# White lies around defaults
170
145
dataclasses.KW_ONLY
171
146
172
- # https://github.com/python/mypy/issues/13114
173
- wsgiref.types.WSGIEnvironment
174
-
175
- # https://github.com/python/mypy/issues/12821 (stubtest bug with Callable type alias)
176
- wsgiref.types.WSGIApplication
177
-
178
147
# stubtest confuses stdlib distutils with setuptools-bundled distutils (#8410),
179
148
# and the whole directory is going to be removed in 3.12 anyway
180
149
distutils\..*
0 commit comments