[New-bugs-announce] [issue38612] some non-ascii charcters link to same identifier/data

Richard Pausch report at bugs.python.org
Mon Oct 28 07:08:00 EDT 2019


New submission from Richard Pausch <r.pausch at 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 <report at bugs.python.org>
<https://bugs.python.org/issue38612>
_______________________________________


More information about the New-bugs-announce mailing list