Lines Matching defs:sys
5 import sys
63 if sys.version_info >= (3, 9) and key == "platlib":
213 # directory not in sys.path.
301 py_version = sys.version.split()[0]
304 abiflags = sys.abiflags
306 # sys.abiflags may not be defined on all platforms.
312 'py_version_short': '%d.%d' % sys.version_info[:2],
313 'py_version_nodot': '%d%d' % sys.version_info[:2],
319 'platlibdir': sys.platlibdir,
444 self.prefix = os.path.normpath(sys.prefix)
445 self.exec_prefix = os.path.normpath(sys.exec_prefix)
468 self.prefix = os.path.normpath(sys.prefix)
572 # internally, and not to sys.path, so we don't check the platform
597 sys_path = map(os.path.normpath, sys.path)
604 "Python's module search path (sys.path) -- "