We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cadd393 commit 9a19f0eCopy full SHA for 9a19f0e
mitogen/master.py
@@ -108,7 +108,7 @@ def _stdlib_paths():
108
]
109
prefixes = (getattr(sys, a, None) for a in attr_candidates)
110
version = 'python%s.%s' % sys.version_info[0:2]
111
- s = set(os.path.abspath(os.path.join(p, 'lib', version))
+ s = set(os.path.realpath(os.path.join(p, 'lib', version))
112
for p in prefixes if p is not None)
113
114
# When running 'unit2 tests/module_finder_test.py' in a Py2 venv on Ubuntu
0 commit comments