Skip to content

Commit

Permalink
Merge pull request #6722 from bluetech/rm-callspec2-global
Browse files Browse the repository at this point in the history
Remove unused CallSpec2 fields _globalid, _globalparam
  • Loading branch information
bluetech authored Feb 13, 2020
2 parents e6ea9ed + 8a4d522 commit 56a5dbe
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/_pytest/python.py
Original file line number Diff line number Diff line change
Expand Up @@ -789,8 +789,6 @@ def __init__(self, metafunc):
self.funcargs = {}
self._idlist = []
self.params = {}
self._globalid = NOTSET
self._globalparam = NOTSET
self._arg2scopenum = {} # used for sorting parametrized resources
self.marks = []
self.indices = {}
Expand All @@ -803,8 +801,6 @@ def copy(self):
cs.indices.update(self.indices)
cs._arg2scopenum.update(self._arg2scopenum)
cs._idlist = list(self._idlist)
cs._globalid = self._globalid
cs._globalparam = self._globalparam
return cs

def _checkargnotcontained(self, arg):
Expand All @@ -815,9 +811,7 @@ def getparam(self, name):
try:
return self.params[name]
except KeyError:
if self._globalparam is NOTSET:
raise ValueError(name)
return self._globalparam
raise ValueError(name)

@property
def id(self):
Expand Down

0 comments on commit 56a5dbe

Please sign in to comment.