New submission from Алексей <smi-ale...@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 <rep...@bugs.python.org>
<https://bugs.python.org/issue45398>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to