Алексей added the comment:
In 3.8.9 version (in Win7 too) the bug is not reproduced!
--
___
Python tracker
<https://bugs.python.org/issue45398>
___
___
Python-bug
New submission from Алексей :
x = set('abcde')
y = set('bdxyz')
x | y
result:
{'b', 'c', 'd', 'z', 'x', 'a', 'y'}
but should be:
{'b', 'c', 'd', 'z'
Алексей Костырин added the comment:
Checked latest master (c879ff247ae1b67a790ff98d2d59145302cd4e4e), 3.8 - 3.5
branches - can not reproduce.
OS - macOS
--
nosy: +Алексей Костырин
___
Python tracker
<https://bugs.python.org/issue29
New submission from Алексей Аверченко :
[11:30:03 ~]$ python
Python 3.6.1 |Anaconda 4.4.0 (x86_64)| (default, May 11 2017, 13:04:09)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for
New submission from Алексей Смирнов:
https://github.com/python/cpython/blob/3.5/Lib/socketserver.py#L627
Must be:
try:
self.finish_request(request, client_address)
except:
self.handle_error(request, client_address)
finally:
self.shutdown_request(request)
--
components
New submission from Алексей Агапитов :
When using asyncore server with UNIX socket, I got 100% CPU usage.
I run modified code example from asyncore doc page.
This code was tested on two systems:
Ubuntu 10.04 2.6.32-32-generic #62-Ubuntu SMP
with two versions of Python:
Python 3.2 (r32:88445