This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

17 righe
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. ...