Antony Lee added the comment:

Actually, that specific solution (using a helper method) will fail because 
there may be unhashable params (due to unhashable default values or 
annotations) among the keyword-only arguments, so it may not be possible to 
build a frozenset (rather, one should compare the {param.name: param if 
param.kind == KEYWORD_ONLY} dict).  The frozenset approach still works for 
computing the hash as this requires all params to be hashable anyways.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue20334>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to