New submission from Richard Pausch <r.pau...@hzdr.de>: The issue was first reported in https://github.com/ipython/ipython/issues/11918.
Some non-ascii characters like φ (\u03c6) and ϕ (\u03d5) map/link to the same data/identifier. ```python ϕ = 1 φ = 2 print(ϕ) # results in 2 - should be 1 print(φ) # results in 2 ``` It has so far been shown to occur both in python 3.6 and 3.7. ---------- messages: 355525 nosy: PrometheusPi priority: normal severity: normal status: open title: some non-ascii charcters link to same identifier/data type: behavior versions: Python 3.6 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue38612> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com