mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
distutils.command.build_ext: add more annotations to get_ext_* methods (#9894)
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
@@ -43,8 +43,8 @@ class build_ext(Command):
|
||||
def build_extension(self, ext) -> None: ...
|
||||
def swig_sources(self, sources, extension): ...
|
||||
def find_swig(self): ...
|
||||
def get_ext_fullpath(self, ext_name): ...
|
||||
def get_ext_fullname(self, ext_name): ...
|
||||
def get_ext_filename(self, ext_name): ...
|
||||
def get_ext_fullpath(self, ext_name: str) -> str: ...
|
||||
def get_ext_fullname(self, ext_name: str) -> str: ...
|
||||
def get_ext_filename(self, ext_name: str) -> str: ...
|
||||
def get_export_symbols(self, ext): ...
|
||||
def get_libraries(self, ext): ...
|
||||
|
||||
Reference in New Issue
Block a user