mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 03:20:18 +00:00
up
This commit is contained in:
parent
4b22c10a5c
commit
943b0bf7db
@ -1,6 +1,10 @@
|
||||
## 0.8.0+1
|
||||
|
||||
+ Reconstruction
|
||||
+ add complete reflection (exec/eval/getattr/setattr/hasattr)
|
||||
+ fix a bug of raw string
|
||||
+ add slice support for `tuple`
|
||||
+ improve performance
|
||||
+ remove thread support
|
||||
|
||||
## 0.6.2+1
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
PocketPy is a lightweight Python interpreter for game engines.
|
||||
|
||||

|
||||
# Basic Features
|
||||
# basic
|
||||
|
||||
The following table shows the basic features of PocketPy with respect to [CPython](https://github.com/python/cpython).
|
||||
The features marked with `YES` are supported, and the features marked with `NO` are not supported.
|
||||
@ -25,7 +25,7 @@ The features marked with `YES` are supported, and the features marked with `NO`
|
||||
| Star Unpacking | `a, *b = [1, 2, 3]` | NO |
|
||||
| Throw Exception | `assert/raise` | YES |
|
||||
| Catch Exception | `try..catch` | NO |
|
||||
| Eval | `eval()` | YES |
|
||||
| Eval/Exec | `eval()/exec()` | YES |
|
||||
| Import | `import/from..import` | YES |
|
||||
| Context Block | `with <expr> as <id>:` | YES |
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user