Skip to content

Commit 2f424eb

Browse files
Merge pull request RustPython#156 from gabhijit/23_update_readme_for_python3
Updated README to reflect Python 3 support explicitly RustPython#23
2 parents 3eafcbe + 277ffa6 commit 2f424eb

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# RustPython
2-
A Python Interpreter written in Rust :snake: :scream: :metal:.
2+
A Python-3 (CPython >= 3.5.0) Interpreter written in Rust :snake: :scream: :metal:.
33

44
[![Build Status](https://travis-ci.org/RustPython/RustPython.svg?branch=master)](https://travis-ci.org/RustPython/RustPython)
55
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
@@ -26,16 +26,16 @@ Or use the interactive shell:
2626

2727
# Goals
2828

29-
- Full python environment entirely in Rust (not CPython bindings)
29+
- Full Python-3 environment entirely in Rust (not CPython bindings)
3030
- A clean implementation without compatibility hacks
3131

3232
# Code organization
3333

34-
- `parser`: python lexing, parsing and ast
35-
- `vm`: python virtual machine
36-
- `src`: using the other subcrates to bring rustpython to life.
37-
- `docs`: documentation (work in progress)
38-
- `py_code_object`: CPython bytecode to rustpython bytecode convertor (work in progress)
34+
- `parser`: python lexing, parsing and ast
35+
- `vm`: python virtual machine
36+
- `src`: using the other subcrates to bring rustpython to life.
37+
- `docs`: documentation (work in progress)
38+
- `py_code_object`: CPython bytecode to rustpython bytecode convertor (work in progress)
3939
- `tests`: integration test snippets
4040

4141
# Contributing

0 commit comments

Comments
 (0)