I'm looking over the code for Python's multiprocessing
module, and it contains this line:
from ._multiprocessing import win32, Connection, PipeConnection
instead of
from _multiprocessing import win32, Connection, PipeConnection
the subtle difference being the period before _multiprocessing
. What does that mean? Why the period?
question from:
https://stackoverflow.com/questions/65935960/what-is-the-meaning-of-import-in-python 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…