diff --git a/plugins/flutter/CHANGELOG.md b/plugins/flutter/CHANGELOG.md index 199639a7..b2a5782e 100644 --- a/plugins/flutter/CHANGELOG.md +++ b/plugins/flutter/CHANGELOG.md @@ -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 diff --git a/plugins/flutter/README.md b/plugins/flutter/README.md index 4f1c7fd9..e6cb4e61 100644 --- a/plugins/flutter/README.md +++ b/plugins/flutter/README.md @@ -3,7 +3,7 @@ PocketPy is a lightweight Python interpreter for game engines. ![](https://pocketpy.dev/static/logo_flat.png) -# 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 as :` | YES |