[New-bugs-announce] [issue45398] Bugs in set operations in 3.8.10 (detected in Win7)

Алексей report at bugs.python.org
Thu Oct 7 04:58:12 EDT 2021


New submission from Алексей <smi-alexey at yandex.ru>:

x = set('abcde')
y = set('bdxyz')

x | y
result:
     {'b', 'c', 'd', 'z', 'x', 'a', 'y'}
but should be:
     {'b', 'c', 'd', 'z', 'x', 'a', 'y', 'e'}

----------
messages: 403362
nosy: bfx683
priority: normal
severity: normal
status: open
title: Bugs in set operations in 3.8.10 (detected in Win7)
type: behavior
versions: Python 3.8

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue45398>
_______________________________________


More information about the New-bugs-announce mailing list