mirror of
https://github.com/python/cpython.git
synced 2024-11-24 08:52:25 +01:00
7 lines
180 B
Python
7 lines
180 B
Python
import sys
|
|
import os
|
|
_maclib = os.path.join(sys.prefix, 'Mac', 'Lib')
|
|
_scriptlib = os.path.join(_maclib, 'lib-scriptpackages')
|
|
sys.path.append(_maclib)
|
|
sys.path.append(_scriptlib)
|