File tree 6 files changed +22
-45
lines changed
tests/stubtest_allowlists 6 files changed +22
-45
lines changed Original file line number Diff line number Diff line change 1
- import sys
2
-
3
- from . import (
4
- bdist_dumb as bdist_dumb ,
5
- bdist_rpm as bdist_rpm ,
6
- build as build ,
7
- build_clib as build_clib ,
8
- build_ext as build_ext ,
9
- build_py as build_py ,
10
- build_scripts as build_scripts ,
11
- check as check ,
12
- clean as clean ,
13
- install as install ,
14
- install_data as install_data ,
15
- install_headers as install_headers ,
16
- install_lib as install_lib ,
17
- register as register ,
18
- sdist as sdist ,
19
- upload as upload ,
20
- )
21
-
22
- if sys .version_info < (3 , 10 ):
23
- from . import bdist_wininst as bdist_wininst
24
-
25
- __all__ = [
26
- "build" ,
27
- "build_py" ,
28
- "build_ext" ,
29
- "build_clib" ,
30
- "build_scripts" ,
31
- "clean" ,
32
- "install" ,
33
- "install_lib" ,
34
- "install_headers" ,
35
- "install_scripts" ,
36
- "install_data" ,
37
- "sdist" ,
38
- "register" ,
39
- "bdist" ,
40
- "bdist_dumb" ,
41
- "bdist_rpm" ,
42
- "bdist_wininst" ,
43
- "check" ,
44
- "upload" ,
45
- ]
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ collections.AsyncGenerator.ag_running
15
15
collections.Callable
16
16
collections.UserString.maketrans
17
17
datetime.datetime_CAPI
18
+ distutils.command.bdist_wininst # see #6523
18
19
distutils.cygwinccompiler.RE_VERSION
19
20
distutils.dist.command_re
20
21
distutils.fancy_getopt.longopt_re
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ collections.UserString.maketrans
19
19
contextvars.Context.__init__ # Default C __init__ signature is wrong
20
20
contextvars.ContextVar.get
21
21
dataclasses.field
22
+ distutils.command.bdist_wininst # see #6523
22
23
dummy_threading.Condition.acquire
23
24
dummy_threading.Condition.release
24
25
dummy_threading.Event.isSet
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ collections.KeysView.__reversed__
26
26
collections.ValuesView.__reversed__
27
27
contextvars.Context.__init__ # Default C __init__ signature is wrong
28
28
dataclasses.field
29
+ distutils.command.bdist_wininst # see #6523
29
30
dummy_threading.Condition.acquire
30
31
dummy_threading.Condition.release
31
32
dummy_threading.Event.isSet
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ contextvars.Context.__init__ # Default C __init__ signature is wrong
31
31
contextlib.AbstractAsyncContextManager.__class_getitem__
32
32
contextlib.AbstractContextManager.__class_getitem__
33
33
dataclasses.field
34
+ distutils.command.bdist_wininst # see #6523
34
35
enum.Enum._generate_next_value_
35
36
fractions.Fraction.__new__ # overload is too complicated for stubtest to resolve
36
37
ftplib.FTP.trust_server_pasv_ipv4_address # Dangerous to use, intentionally undocumented, intentionally missing from typeshed. #6154
Original file line number Diff line number Diff line change @@ -314,6 +314,24 @@ builtins.reveal_locals
314
314
builtins.reveal_type
315
315
316
316
# __all__-related weirdness (see #6523)
317
+ distutils.command.build
318
+ distutils.command.build_py
319
+ distutils.command.build_ext
320
+ distutils.command.build_clib
321
+ distutils.command.build_scripts
322
+ distutils.command.clean
323
+ distutils.command.install
324
+ distutils.command.install_lib
325
+ distutils.command.install_headers
326
+ distutils.command.install_scripts
327
+ distutils.command.install_data
328
+ distutils.command.sdist
329
+ distutils.command.register
330
+ distutils.command.bdist
331
+ distutils.command.bdist_dumb
332
+ distutils.command.bdist_rpm
333
+ distutils.command.check
334
+ distutils.command.upload
317
335
email.base64mime
318
336
email.charset
319
337
email.encoders
You can’t perform that action at this time.
0 commit comments