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.

classification
Title: Bugs in set operations in 3.8.10 (detected in Win7)
Type: behavior Stage: resolved
Components: Versions: Python 3.8
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: bfx683, rhettinger
Priority: normal Keywords:

Created on 2021-10-07 08:58 by bfx683, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (3)
msg403362 - (view) Author: Alexey (bfx683) Date: 2021-10-07 08:58
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'}
msg403369 - (view) Author: Alexey (bfx683) Date: 2021-10-07 09:39
In 3.8.9 version (in Win7 too) the bug is not reproduced!
msg403402 - (view) Author: Alexey (bfx683) Date: 2021-10-07 12:57
Is interesting, that in win10 the bug is not reproduced too !
(only in win7!!!)
History
Date User Action Args
2022-04-11 14:59:50adminsetgithub: 89561
2021-10-07 16:55:34bfx683setstatus: open -> closed
stage: resolved
2021-10-07 12:57:34bfx683setmessages: + msg403402
2021-10-07 09:53:51serhiy.storchakasetnosy: + rhettinger
2021-10-07 09:39:47bfx683setmessages: + msg403369
2021-10-07 08:58:12bfx683create