Generator exception handling is ok now

master
Paul Sokolovsky 2014-03-22 15:51:36 -07:00
rodzic 5860968047
commit 14ad87c7be
1 zmienionych plików z 1 dodań i 1 usunięć

@ -23,7 +23,7 @@ Known issues are essentially bugs, misfeaturures, and omissions considered such,
1. There's no support for persistent bytecode, and running bytecode (vs running Python source). [#222](//github.com/micropython/micropython/issues/222)
1. print() function doesn't use Python stream infrastructure, but underlying C printf() function directly. This means if you override sys.stdout, print() won't be affected. [#209](//github.com/micropython/micropython/issues/209)
1. Some more advanced usages of package/module importing not fully implemented. [#298](//github.com/micropython/micropython/issues/298)
1. Exception handling with generators is not fully implemented. [#243](//github.com/micropython/micropython/issues/243)
1. <strike>Exception handling with generators is not fully implemented.</strike> (Some small details may need to be done yet.) [#243](//github.com/micropython/micropython/issues/243)
1. ``struct`` module not implemented.
1. ``re`` module not implemented. [#13](//github.com/micropython/micropython/issues/13)
1. Only beginning of ``io`` module and class hierarchy exists so far.