fix self in ssl, unittest and multiprocessing/managers (#644)

This commit is contained in:
Elazar Gershuni
2016-10-30 21:20:03 +02:00
committed by Guido van Rossum
parent b1c545cee6
commit 252a772b67
3 changed files with 6 additions and 6 deletions

View File

@@ -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): ...