Skip to content

Commit a88bb5b

Browse files
[mlir][python] Audit and fix a lot of the Python pyi stubs.
* Classes that are still todo are marked with "# TODO: Auto-generated. Audit and fix." * Those without this note have been cross-checked with C++ sources and most have been spot checked by hovering in VsCode. Differential Revision: https://reviews.llvm.org/D114767
1 parent bdc3183 commit a88bb5b

File tree

4 files changed

+194
-145
lines changed

4 files changed

+194
-145
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
from typing import List
22

3-
globals: _Globals
3+
globals: "_Globals"
44

55
class _Globals:
66
dialect_search_modules: List[str]
7-
def __init__(self, *args, **kwargs) -> None: ...
8-
def _register_dialect_impl(self, dialect_namespace: str, dialect_class: object) -> None: ...
9-
def _register_operation_impl(self, operation_name: str, operation_class: object, raw_opview_class: object) -> None: ...
7+
def _register_dialect_impl(self, dialect_namespace: str, dialect_class: type) -> None: ...
8+
def _register_operation_impl(self, operation_name: str, operation_class: type, raw_opview_class: type) -> None: ...
109
def append_dialect_search_prefix(self, module_name: str) -> None: ...
1110

12-
def register_dialect(dialect_class: object) -> object: ...
13-
def register_operation(dialect_class: object) -> object: ...
11+
def register_dialect(dialect_class: type) -> object: ...
12+
def register_operation(dialect_class: type) -> object: ...

0 commit comments

Comments
 (0)