py: Fix static defn in qstr; include mpconfigport.h with "" (not <>).
diff --git a/py/qstr.c b/py/qstr.c
index a1ee7ca..7ccb34f 100644
--- a/py/qstr.c
+++ b/py/qstr.c
@@ -77,7 +77,7 @@
     const byte *qstrs[];
 } qstr_pool_t;
 
-const static qstr_pool_t const_pool = {
+STATIC const qstr_pool_t const_pool = {
     NULL,               // no previous pool
     0,                  // no previous pool
     10,                 // set so that the first dynamically allocated pool is twice this size; must be <= the len (just below)