@@ -24,6 +24,8 @@ _collections_abc.Set.isdisjoint
24
24
_csv.Dialect.__init__
25
25
_dummy_threading
26
26
_importlib_modulespec
27
+ _operator.attrgetter # not a function at runtime
28
+ _operator.itemgetter # not a function at runtime
27
29
_operator.methodcaller
28
30
_threading_local.local.__new__
29
31
_typeshed.* # Utility types for typeshed, doesn't exist at runtime
@@ -57,7 +59,9 @@ builtins.bytes.__int__
57
59
builtins.bytes.maketrans
58
60
builtins.classmethod.__get__
59
61
builtins.ellipsis
62
+ builtins.filter # not a function at runtime
60
63
builtins.function
64
+ builtins.map # not a function at runtime
61
65
builtins.memoryview.__contains__
62
66
builtins.memoryview.__iter__
63
67
builtins.memoryview.cast # inspect.signature is incorrect about shape being kw-only
@@ -66,7 +70,9 @@ builtins.property.__get__
66
70
builtins.property.fdel
67
71
builtins.property.fget
68
72
builtins.property.fset
73
+ builtins.reversed # not a function at runtime
69
74
builtins.staticmethod.__get__
75
+ builtins.zip # not a function at runtime
70
76
bz2.BZ2Decompressor.__init__
71
77
bz2.BZ2File.readinto
72
78
bz2.BZ2File.readlines
@@ -247,13 +253,19 @@ ipaddress._BaseAddress.is_unspecified
247
253
ipaddress._BaseAddress.max_prefixlen
248
254
ipaddress._BaseAddress.packed
249
255
ipaddress._BaseNetwork.max_prefixlen
256
+ itertools.accumulate # not a function at runtime
250
257
itertools.chain.from_iterable
258
+ itertools.combinations # not a function at runtime
251
259
itertools.combinations_with_replacement
252
260
itertools.compress
253
261
itertools.count
254
262
itertools.dropwhile
255
263
itertools.filterfalse
264
+ itertools.groupby # not a function at runtime
265
+ itertools.islice # not a function at runtime
256
266
itertools.permutations
267
+ itertools.product # not a function at runtime
268
+ itertools.repeat # not a function at runtime
257
269
itertools.starmap
258
270
itertools.takewhile
259
271
itertools.zip_longest
@@ -302,6 +314,8 @@ netrc.NetrcParseError.__init__
302
314
netrc.netrc.__init__
303
315
ntpath.join
304
316
numbers.Number.__hash__
317
+ operator.attrgetter # not a function at runtime
318
+ operator.itemgetter # not a function at runtime
305
319
operator.methodcaller
306
320
optparse.HelpFormatter._format__Text
307
321
optparse.OptionParser.__init__
0 commit comments