
Sept. 10, 2016
9:05 p.m.
On Sat, Sep 10, 2016 at 4:56 PM, Guido van Rossum <guido@python.org> wrote:
Another issue already discussed in PEP 505 is a conflict with IPython (Jupyter Notebook), which uses ? and ?? as custom syntax to request help. But maybe it can be taught to only recognize those when they're the last character(s) on the line?
I think this is already the case: In [1]: ?foo Object `foo` not found. In [2]: foo? Object `foo` not found. In [3]: foo?bar File "<ipython-input-3-c7de2a05ce6b>", line 1 foo?bar ^ SyntaxError: invalid syntax