From 14ad87c7be25f5b22e3e3dbe4cb6176e95d5389b Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 22 Mar 2014 15:51:36 -0700 Subject: [PATCH] Generator exception handling is ok now --- Differences.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Differences.md b/Differences.md index 016a8d5..fcce7ae 100644 --- a/Differences.md +++ b/Differences.md @@ -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. Exception handling with generators is not fully implemented. (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.