Show More
@@ -1480,6 +1480,8 b' class lrucachedict(object):' | |||
|
1480 | 1480 | if default is _notset: |
|
1481 | 1481 | raise |
|
1482 | 1482 | return default |
|
1483 | ||
|
1484 | assert node is not None # help pytype | |
|
1483 | 1485 | value = node.value |
|
1484 | 1486 | self.totalcost -= node.cost |
|
1485 | 1487 | node.markempty() |
@@ -1567,6 +1569,8 b' class lrucachedict(object):' | |||
|
1567 | 1569 | while n.key is _notset: |
|
1568 | 1570 | n = n.prev |
|
1569 | 1571 | |
|
1572 | assert n is not None # help pytype | |
|
1573 | ||
|
1570 | 1574 | key, value = n.key, n.value |
|
1571 | 1575 | |
|
1572 | 1576 | # And remove it from the cache and mark it as empty. |
General Comments 0
You need to be logged in to leave comments.
Login now