New issue 1848: PyPy's REPL/readline is missing numbers in its syntax_table's 
SYNTAX_WORDs
https://bitbucket.org/pypy/pypy/issue/1848/pypys-repl-readline-is-missing-numbers-in

paulie4:

When using meta-f, meta-b, or meta-backspace, the current PyPy readline 
incorrectly treats numbers as symbols instead of word characters. To correct 
this, Line 96 in ```lib_pypy/pyrepl/reader.py``` should change from this:

```
#!python

    for c in [a for a in map(unichr, range(256)) if a.isalpha()]:
```
to this:
```
#!python

    for c in [a for a in map(unichr, range(256)) if a.isalnum()]:
```


_______________________________________________
pypy-issue mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-issue

Reply via email to