summaryrefslogtreecommitdiffstats
path: root/Lib/inspect.py
diff options
context:
space:
mode:
authorBatuhan Taşkaya <47358913+isidentical@users.noreply.github.com>2019-11-24 16:46:18 (GMT)
committerPablo Galindo <Pablogsal@gmail.com>2019-11-24 16:46:18 (GMT)
commite407646b741db6851789963e525a1f5daad0a336 (patch)
tree1f7225a2c9ea99ec1fbff1e0e386d37708df2f32 /Lib/inspect.py
parent665ad3dfa9993b9a4000b097ddead4e292590e8c (diff)
downloadcpython-e407646b741db6851789963e525a1f5daad0a336.zip
cpython-e407646b741db6851789963e525a1f5daad0a336.tar.gz
cpython-e407646b741db6851789963e525a1f5daad0a336.tar.bz2
Remove unnecessary variable definition (GH-17368)
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r--Lib/inspect.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index 3ff395c..608ca95 100644
--- a/Lib/inspect.py
+++ b/Lib/inspect.py
@@ -1136,7 +1136,6 @@ def getfullargspec(func):
varkw = None
posonlyargs = []
kwonlyargs = []
- defaults = ()
annotations = {}
defaults = ()
kwdefaults = {}