summaryrefslogtreecommitdiffstats
path: root/Lib/linecache.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/linecache.py')
-rw-r--r--Lib/linecache.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/linecache.py b/Lib/linecache.py
index c39f8db..d6fc28c 100644
--- a/Lib/linecache.py
+++ b/Lib/linecache.py
@@ -9,6 +9,8 @@ import sys
import os
from stat import *
+__all__ = ["getline","clearcache","checkcache"]
+
def getline(filename, lineno):
lines = getlines(filename)
if 1 <= lineno <= len(lines):