gitextract_5ar8r793/ ├── .agignore ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── =template.pyj ├── CHANGELOG.md ├── CONTRIBUTORS ├── HACKING.md ├── LICENSE ├── README.md ├── add-toc-to-readme ├── bin/ │ ├── export │ ├── rapydscript │ └── web-repl-export ├── build ├── package.json ├── publish.py ├── release/ │ ├── baselib-plain-pretty.js │ ├── baselib-plain-ugly.js │ ├── compiler.js │ └── signatures.json ├── session.vim ├── setup.cfg ├── src/ │ ├── ast.pyj │ ├── baselib-builtins.pyj │ ├── baselib-containers.pyj │ ├── baselib-errors.pyj │ ├── baselib-internal.pyj │ ├── baselib-itertools.pyj │ ├── baselib-str.pyj │ ├── compiler.pyj │ ├── errors.pyj │ ├── lib/ │ │ ├── aes.pyj │ │ ├── elementmaker.pyj │ │ ├── encodings.pyj │ │ ├── gettext.pyj │ │ ├── math.pyj │ │ ├── operator.pyj │ │ ├── pythonize.pyj │ │ ├── random.pyj │ │ ├── re.pyj │ │ ├── traceback.pyj │ │ └── uuid.pyj │ ├── output/ │ │ ├── __init__.pyj │ │ ├── classes.pyj │ │ ├── codegen.pyj │ │ ├── comments.pyj │ │ ├── exceptions.pyj │ │ ├── functions.pyj │ │ ├── literals.pyj │ │ ├── loops.pyj │ │ ├── modules.pyj │ │ ├── operators.pyj │ │ ├── statements.pyj │ │ ├── stream.pyj │ │ └── utils.pyj │ ├── parse.pyj │ ├── string_interpolation.pyj │ ├── tokenizer.pyj │ ├── unicode_aliases.pyj │ └── utils.pyj ├── test/ │ ├── _import_one.pyj │ ├── _import_two/ │ │ ├── __init__.pyj │ │ ├── level2/ │ │ │ ├── __init__.pyj │ │ │ └── deep.pyj │ │ ├── other.pyj │ │ └── sub.pyj │ ├── aes_vectors.pyj │ ├── annotations.pyj │ ├── baselib.pyj │ ├── classes.pyj │ ├── collections.pyj │ ├── decorators.pyj │ ├── docstrings.pyj │ ├── elementmaker_test.pyj │ ├── functions.pyj │ ├── generators.pyj │ ├── generic.pyj │ ├── imports.pyj │ ├── internationalization.pyj │ ├── lint.pyj │ ├── loops.pyj │ ├── regexp.pyj │ ├── repl.pyj │ ├── scoped_flags.pyj │ ├── starargs.pyj │ └── str.pyj ├── tools/ │ ├── cli.js │ ├── compile.js │ ├── compiler.js │ ├── completer.js │ ├── embedded_compiler.js │ ├── export.js │ ├── gettext.js │ ├── ini.js │ ├── lint.js │ ├── msgfmt.js │ ├── repl.js │ ├── self.js │ ├── test.js │ ├── utils.js │ └── web_repl.js ├── try └── web-repl/ ├── env.js ├── index.html ├── main.js ├── prism.css ├── prism.js └── sha1.js