From a quick search, I know that one dot means in the current directory, two dots mean in the parent directory, and three dots mean in the grandparent directory, but these examples are usually written as from .. import PackageName
What if the code was just import ...? Does this import every file in the grandparent directory? (The reason why I ask is that I'm working with some files that has this import statement at the top, but there is nothing in the grandparent directory to import).


...It should throw an error...