mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Add __all__ to modules beginning with 'm' (#7330)
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
import sys
|
||||
from typing import Any, Callable, Mapping
|
||||
|
||||
if sys.version_info >= (3, 8):
|
||||
__all__ = ["BaseProcess", "current_process", "active_children", "parent_process"]
|
||||
else:
|
||||
__all__ = ["BaseProcess", "current_process", "active_children"]
|
||||
|
||||
class BaseProcess:
|
||||
name: str
|
||||
daemon: bool
|
||||
|
||||
Reference in New Issue
Block a user