You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
341B

  1. from typing import Any
  2. # py allows to use e.g. py.path.local even without importing py.path.
  3. # So import implicitly.
  4. from . import error
  5. from . import iniconfig
  6. from . import path
  7. from . import io
  8. from . import xml
  9. __version__: str
  10. # Untyped modules below here.
  11. std: Any
  12. test: Any
  13. process: Any
  14. apipkg: Any
  15. code: Any
  16. builtin: Any
  17. log: Any