We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db3b312 commit 730fda0Copy full SHA for 730fda0
vm/src/vm.rs
@@ -1956,10 +1956,6 @@ impl<'vm> Drop for ReprGuard<'vm> {
1956
}
1957
1958
1959
-pub struct Interpreter {
1960
- vm: VirtualMachine,
1961
-}
1962
-
1963
/// The general interface for the VM
1964
///
1965
/// # Examples
@@ -1976,6 +1972,10 @@ pub struct Interpreter {
1976
1972
/// vm.run_code_obj(code_obj, scope).unwrap();
1977
1973
/// });
1978
1974
/// ```
1975
+pub struct Interpreter {
+ vm: VirtualMachine,
+}
+
1979
impl Interpreter {
1980
pub fn new(settings: PySettings, init: InitParameter) -> Self {
1981
Self::new_with_init(settings, |_| init)
0 commit comments