Normaly, I used "import logging" to use logging of python.
If I created a package: "logging". In this package I created a module: log.py In this file, I used "import logging", python will auto reference to my package "logging", but I want to used logging of system (/usr/lib64/logging.py)
How I can distinguish them: logging (/usr/lib64/logging.py) and my package "logging"
I try as below:
from "usr/lib64/python2.7/logging.py" import logging
but it still references to my package logging.