You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-5Lines changed: 18 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,10 +10,23 @@ A Python virtual machine, written in Rust.
10
10
* useable as a library
11
11
* a fine-grained sandbox
12
12
13
+
## Goals
14
+
15
+
* Compatible with CPython's bytecode from 3.4 to 3.6, in order to take advantage of [FAT Python](https://faster-cpython.readthedocs.org/fat_python.html)
16
+
* Support CPython's implementation of the standard library
17
+
* No crash, even when messing with code objects
18
+
* Bytecode optimizations at runtime
19
+
* Less bounded by the GIL than CPython
20
+
21
+
## Dependencies
22
+
23
+
* CPython 3.4 (used as a parser and bytecode compiler). Versions newer than 3.4 should work, but their support is not tested.
24
+
*[Rust](https://www.rust-lang.org/downloads.html)
25
+
*[Cargo](https://crates.io/install)
26
+
13
27
## Try it
14
28
15
-
1. Install Python 3.4 (used as a parser and bytecode compiler), git, [Rust](https://www.rust-lang.org/downloads.html) and [Cargo](https://crates.io/install)
0 commit comments