py: Update parse.c&mpconfig.h to reflect rename of mp_lexer_show_token.

This function is only used when DEBUG_PRINTERS and USE_RULE_NAME are
enabled.
diff --git a/py/parse.c b/py/parse.c
index 6223968..3f70431 100644
--- a/py/parse.c
+++ b/py/parse.c
@@ -782,7 +782,7 @@
         // debugging: print the rule name that failed and the token
         printf("rule: %s\n", rule->rule_name);
 #if MICROPY_DEBUG_PRINTERS
-        mp_token_show(lex);
+        mp_lexer_show_token(lex);
 #endif
 #endif
     }