py.py (293B)
1 # shim for pylib going away 2 # if pylib is installed this file will get skipped 3 # (`py/__init__.py` has higher precedence) 4 import sys 5 6 import _pytest._py.error as error 7 import _pytest._py.path as path 8 9 10 sys.modules["py.error"] = error 11 sys.modules["py.path"] = path 12 13 __all__ = ["error", "path"]