#4222: document dis.findlabels() and dis.findlinestarts() and
put them into dis.__all__.
diff --git a/Lib/dis.py b/Lib/dis.py
index 5a74b3a..e60e702 100644
--- a/Lib/dis.py
+++ b/Lib/dis.py
@@ -6,7 +6,8 @@
 from opcode import *
 from opcode import __all__ as _opcodes_all
 
-__all__ = ["dis","disassemble","distb","disco"] + _opcodes_all
+__all__ = ["dis", "disassemble", "distb", "disco",
+           "findlinestarts", "findlabels"] + _opcodes_all
 del _opcodes_all
 
 def dis(x=None):