Lines Matching refs:nt
15 import nt
17 # Most tests can complete without the nt module,
19 nt = None
673 @unittest.skipUnless(nt, "abspath requires 'nt' module")
864 @unittest.skipUnless(nt, "OS helpers require 'nt' module")
869 executable = nt._getfinalpathname(sys.executable)
872 volume_path = nt._getvolumepathname(path)
877 cap, free = nt._getdiskusage(sys.exec_prefix)
880 b_cap, b_free = nt._getdiskusage(sys.exec_prefix.encode())
886 final_path = nt._getfinalpathname(path)
890 b_final_path = nt._getfinalpathname(path.encode())