dist: update linecache module with missing __all__ item

This commit is contained in:
rdb 2021-10-14 09:47:46 +02:00
parent 224d21352a
commit 98e3b1f03e

View File

@ -147,7 +147,7 @@ overrideModules = {
# Used by the warnings module, among others, to get line numbers. Since # Used by the warnings module, among others, to get line numbers. Since
# we set __file__, this would cause it to try and extract Python code # we set __file__, this would cause it to try and extract Python code
# lines from the main executable, which we don't want. # lines from the main executable, which we don't want.
'linecache': """__all__ = ["getline", "clearcache", "checkcache"] 'linecache': """__all__ = ["getline", "clearcache", "checkcache", "lazycache"]
cache = {} cache = {}