From: Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> Date: Sun, 24 Nov 2019 16:46:18 +0000 (+0300) Subject: Remove unnecessary variable definition (GH-17368) X-Git-Tag: v3.9.0a2~125 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e407646b741db6851789963e525a1f5daad0a336;p=thirdparty%2FPython%2Fcpython.git Remove unnecessary variable definition (GH-17368) --- diff --git a/Lib/inspect.py b/Lib/inspect.py index 3ff395ca3337..608ca9551160 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -1136,7 +1136,6 @@ def getfullargspec(func): varkw = None posonlyargs = [] kwonlyargs = [] - defaults = () annotations = {} defaults = () kwdefaults = {}