mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Trivial readability improvement (#3791)
This commit is contained in:
parent
5837d0418f
commit
db50ba7c72
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ def _compile(pattern, flags):
|
|||
if not (flags & DEBUG):
|
||||
if len(_cache) >= _MAXCACHE:
|
||||
try:
|
||||
_cache.popitem(False)
|
||||
_cache.popitem(last=False)
|
||||
except KeyError:
|
||||
pass
|
||||
_cache[type(pattern), pattern, flags] = p
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue