diff --git a/test/completion/imports.py b/test/completion/imports.py index 83a4a721..d62a47c7 100644 --- a/test/completion/imports.py +++ b/test/completion/imports.py @@ -72,6 +72,16 @@ import os #? ['dirname'] os.path.dirname +#? os.path.join +from os.path import join + +from os.path import ( + expanduser +) + +#? os.path.expanduser +expanduser + from itertools import (tee, islice) #? ['islice']