]> granicus.if.org Git - python/commit
Issue #25590: Make rlcompleter only call getattr() once per attribute
authorMartin Panter <vadmium+py@gmail.com>
Fri, 13 Nov 2015 22:47:00 +0000 (22:47 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Fri, 13 Nov 2015 22:47:00 +0000 (22:47 +0000)
commit06622ead8072f3602bba8cd1924f0897873ad8b1
tree747cf68e713427c3d494083981fe91c4de6f573e
parent1bb651540e0743c4e58d875d1de240597862fa34
Issue #25590: Make rlcompleter only call getattr() once per attribute

Previously it was called another time via hasattr(), and both calls were
made once for dir(f) and again for dir(f.__class__).  This includes a
backport of changing from a list to a set from revision 4dbb315fe667.
Lib/rlcompleter.py
Lib/test/test_rlcompleter.py
Misc/NEWS