From b4e447d70af36d7a216f002ecfd9df0d8745045d Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Mon, 18 Jan 2021 03:01:37 -0800 Subject: [PATCH] builtins: complex doesn't define __complex__ (#4945) --- stdlib/3/builtins.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/stdlib/3/builtins.pyi b/stdlib/3/builtins.pyi index 49d358312..939effa78 100644 --- a/stdlib/3/builtins.pyi +++ b/stdlib/3/builtins.pyi @@ -313,7 +313,6 @@ class complex: def __neg__(self) -> complex: ... def __pos__(self) -> complex: ... def __str__(self) -> str: ... - def __complex__(self) -> complex: ... def __abs__(self) -> float: ... def __hash__(self) -> int: ... def __bool__(self) -> bool: ...