Insert a safety space after numbers as well as names in untokenize().
diff --git a/Lib/tokenize.py b/Lib/tokenize.py
index 2b40e6f..a30791c 100644
--- a/Lib/tokenize.py
+++ b/Lib/tokenize.py
@@ -182,7 +182,7 @@
     for tok in iterable:
         toknum, tokval = tok[:2]
 
-        if toknum == NAME:
+        if toknum in (NAME, NUMBER):
             tokval += ' '
 
         if toknum == INDENT: