Skip to content

Commit ef01990

Browse files
committed
Revert lru comment
1 parent 42f76a3 commit ef01990

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

sentry_sdk/_lru_cache.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,6 @@ def __init__(self, max_size):
9292
self.hits = self.misses = 0
9393

9494
def __copy__(self):
95-
"""
96-
Cache keys and values are shallow copied.
97-
"""
9895
cache = LRUCache(self.max_size)
9996
cache.full = self.full
10097
cache.cache = copy(self.cache)

0 commit comments

Comments
 (0)