(
&self,
source: &str,
mode: compiler::Mode,
source_path: String,
)
| 10 | |
| 11 | impl VirtualMachine { |
| 12 | pub fn compile( |
| 13 | &self, |
| 14 | source: &str, |
| 15 | mode: compiler::Mode, |
| 16 | source_path: String, |
| 17 | ) -> Result<PyRef<PyCode>, CompileError> { |
| 18 | self.compile_with_opts(source, mode, source_path, self.compile_opts()) |
| 19 | } |
| 20 | |
| 21 | pub fn compile_with_opts( |
| 22 | &self, |