diff options
author | ven <vendethiel@hotmail.fr> | 2016-03-10 23:00:50 +0100 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2016-03-10 23:00:50 +0100 |
commit | 2c944368244deedff40874133ac05b8470a389f4 (patch) | |
tree | 9ce99122d803d48b06cc317a5c37a3b3b235d409 /python3.html.markdown | |
parent | 7540270a00fcacd94c9bd5ca683cd2031e8328cf (diff) | |
parent | 879337f9be2ef3c6ea2b01d34d2a21ad325c6cc4 (diff) |
Merge pull request #1288 from DaKnOb/fixpymod
[python/en] Add note about Python Module Order of Import
Diffstat (limited to 'python3.html.markdown')
-rw-r--r-- | python3.html.markdown | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python3.html.markdown b/python3.html.markdown index d88ccec1..ea29fdba 100644 --- a/python3.html.markdown +++ b/python3.html.markdown @@ -716,6 +716,11 @@ math.sqrt(16) == m.sqrt(16) # => True import math dir(math) +# If you have a Python script named math.py in the same +# folder as your current script, the file math.py will +# be loaded instead of the built-in Python module. +# This happens because the local folder has priority +# over Python's built-in libraries. #################################################### ## 7. Advanced |