mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-07 18:30:57 +08:00
fix self in ssl, unittest and multiprocessing/managers (#644)
This commit is contained in:
committed by
Guido van Rossum
parent
b1c545cee6
commit
252a772b67
@@ -4,7 +4,7 @@
|
||||
|
||||
from typing import Any
|
||||
|
||||
class BaseManager():
|
||||
def register(typeid: str, callable: Any = ...) -> None: ...
|
||||
class BaseManager:
|
||||
def register(self, typeid: str, callable: Any = ...) -> None: ...
|
||||
|
||||
class RemoteError(Exception): ...
|
||||
|
||||
Reference in New Issue
Block a user