]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove unnecessary variable definition (GH-17368)
authorBatuhan Taşkaya <47358913+isidentical@users.noreply.github.com>
Sun, 24 Nov 2019 16:46:18 +0000 (19:46 +0300)
committerPablo Galindo <Pablogsal@gmail.com>
Sun, 24 Nov 2019 16:46:18 +0000 (16:46 +0000)
Lib/inspect.py

index 3ff395ca33377863607846bd07b77bf713e670ec..608ca9551160e342d77c83d798ca50a864f324f8 100644 (file)
@@ -1136,7 +1136,6 @@ def getfullargspec(func):
     varkw = None
     posonlyargs = []
     kwonlyargs = []
-    defaults = ()
     annotations = {}
     defaults = ()
     kwdefaults = {}