File: test_sysconfig.py

package info (click to toggle)
pypy3 7.3.20%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 212,628 kB
  • sloc: python: 2,101,020; ansic: 540,684; sh: 21,462; asm: 14,419; cpp: 4,451; makefile: 4,209; objc: 761; xml: 530; exp: 499; javascript: 314; pascal: 244; lisp: 45; csh: 12; awk: 4
file content (14 lines) | stat: -rw-r--r-- 472 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import os
import sys
import sysconfig

def test_libdirs():
    # Make sure the schemes are all valid, issue 3954
    schemes = sysconfig.get_scheme_names()
    names = ["stdlib", "platstdlib", "platlib", "purelib"]
    candidates = {sysconfig.get_path(name, scheme) for scheme in schemes for name in names}
    paths = [path for path in candidates if path in sys.path]
    if sys.platform == 'win32':
        assert len(paths) == 0
    else:
        assert len(paths) > 0