This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author PrometheusPi
Recipients PrometheusPi
Date 2019-10-28.11:07:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1572260880.13.0.309355653543.issue38612@roundup.psfhosted.org>
In-reply-to
Content
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.
History
Date User Action Args
2019-10-28 11:08:00PrometheusPisetrecipients: + PrometheusPi
2019-10-28 11:08:00PrometheusPisetmessageid: <1572260880.13.0.309355653543.issue38612@roundup.psfhosted.org>
2019-10-28 11:08:00PrometheusPilinkissue38612 messages
2019-10-28 11:07:59PrometheusPicreate