[issue33340] Inaccurate docs on `import` behaviour

2018-04-23 Thread sam_b
sam_b added the comment: Thanks, I thought it might be something like that. Would it be worth clarifying the distinction in the docs? It was certainly surprising to me that `import time` and `import logging` behave differently. -- ___ Python

[issue33340] Inaccurate docs on `import` behaviour

2018-04-23 Thread sam_b
New submission from sam_b : The docs https://docs.python.org/3/tutorial/modules.html#the-module-search-path describe: > When a module named spam is imported, the interpreter first searches for a > built-in module with that name. If not found, it then searches for a file > named spa