Trivial readability improvement (#3791)

This commit is contained in:
Barry Warsaw 2017-09-27 11:12:30 -04:00 committed by GitHub
parent 5837d0418f
commit db50ba7c72
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ def _compile(pattern, flags):
if not (flags & DEBUG): if not (flags & DEBUG):
if len(_cache) >= _MAXCACHE: if len(_cache) >= _MAXCACHE:
try: try:
_cache.popitem(False) _cache.popitem(last=False)
except KeyError: except KeyError:
pass pass
_cache[type(pattern), pattern, flags] = p _cache[type(pattern), pattern, flags] = p