This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

17 wiersze
274 B

  1. import types
  2. from typing import Optional
  3. from .visitors import Transformer
  4. class Ast(object):
  5. pass
  6. class AsList(object):
  7. pass
  8. def create_transformer(
  9. ast_module: types.ModuleType,
  10. transformer: Optional[Transformer]=None
  11. ) -> Transformer:
  12. ...