Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
blueloveTH committed Feb 25, 2023
1 parent c7bab88 commit 49c68d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Please see https://pocketpy.dev for details or try [Live Demo](https://bluelovet
| Context Block | `with <expr> as <id>:` | YES |
| Type Annotation | `def f(a:int, b:float=1)` | YES |
| Generator | `yield i` | YES |
| Decorator | `@cache` | YES |

## Getting Started

Expand Down Expand Up @@ -175,13 +176,7 @@ Check our [Coding Style Guide](https://pocketpy.dev/coding_style_guide/) if you

An excellent learning material. It illustrates how Python's virtual machine works.

+ [emhash](https://github.com/ktprime/emhash)

A very fast and memory efficient c++ flat hash map/set. In our test case, it is 40% faster than `std::unordered_map`.


## License

PocketPy is licensed under the [MIT License](http://opensource.org/licenses/MIT).

PocketPy uses [emhash](https://github.com/ktprime/emhash)(MIT License) to implement Python's internal `__dict__` object.
4 changes: 1 addition & 3 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ PocketPy是一个轻量级的Python解释器,为嵌入至游戏引擎而设计
| 上下文管理器 | `with <expr> as <id>:` | YES |
| 类型标注 | `def f(a:int, b:float=1)` | YES |
| 生成器 | `yield i` | YES |
| 装饰器 | `@cache` | YES |

## 快速上手

Expand Down Expand Up @@ -149,11 +150,8 @@ flutter pub add pocketpy
## 参考

+ [cpython](https://github.com/python/cpython)

+ [byterun](http://qingyunha.github.io/taotao/)

+ [emhash](https://github.com/ktprime/emhash)

## 开源协议

MIT License

0 comments on commit 49c68d1

Please sign in to comment.