this repo has no description
1#pragma once
2
3#include "handles-decl.h"
4#include "symbols.h"
5
6namespace py {
7
8class Thread;
9
10RawObject compile(Thread* thread, const Object& source, const Object& filename,
11 SymbolId mode, word flags, int optimize);
12
13RawObject mangle(Thread* thread, const Object& privateobj, const Str& ident);
14
15} // namespace py