From 48920fea7ee6c1d413fba12fe709c652da065393 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Mon, 20 Mar 2017 08:43:19 -0700 Subject: [PATCH] Remove xxsubtype stubs (#1039) As suggested by Guido --- stdlib/2/xxsubtype.pyi | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 stdlib/2/xxsubtype.pyi diff --git a/stdlib/2/xxsubtype.pyi b/stdlib/2/xxsubtype.pyi deleted file mode 100644 index 56a183fb1..000000000 --- a/stdlib/2/xxsubtype.pyi +++ /dev/null @@ -1,17 +0,0 @@ -"""Stub file for the 'xxsubtype' module.""" - -from typing import Any - -def bench(obj: Any, name: str, n: int = ...) -> float: ... - -class spamdict(dict): - state = ... # type: int - def getstate(self) -> int: ... - def setstate(self, a: int) -> None: ... - -class spamlist(list): - state = ... # type: int - def getstate(self) -> int: ... - def setstate(self, a: int) -> None: ... - def classmeth(self, *args, **kwargs) -> tuple: ... - def staticmeth(self, *args, **kwargs) -> tuple: ...