re-allow to parametrize with values that don't support __eq__ (closes issue213)

This commit is contained in:
holger krekel
2012-10-28 14:52:43 +01:00
parent 573599beb3
commit fce13c3e46
3 changed files with 20 additions and 1 deletions

View File

@@ -598,7 +598,7 @@ class CallSpec2(object):
if valtype == "funcargs":
self.params[arg] = id
self._arg2scopenum[arg] = scopenum
if val == _notexists:
if val is _notexists:
self._emptyparamspecified = True
self._idlist.append(id)