blueloveTH hace 3 años
padre
commit
943b0bf7db
Se han modificado 2 ficheros con 7 adiciones y 3 borrados
  1. 5 1
      plugins/flutter/CHANGELOG.md
  2. 2 2
      plugins/flutter/README.md

+ 5 - 1
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
 

+ 2 - 2
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 <expr> as <id>:`     | YES       |