[issue42172] Typo in test library for test_socket.py

2020-10-29 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset d6238ba82d07e8e0783b692f37dc4b7c8617294b by Akashkumar D Khunt in branch 'master': bpo-42172: Correct typo for test_socket.py (GH-23013) https://github.com/python/cpython/commit/d6238ba82d07e8e0783b692f37dc4b7c8617294b -- __

[issue42172] Typo in test library for test_socket.py

2020-10-29 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: -Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42172] Typo in test library for test_socket.py

2020-10-29 Thread Dong-hee Na
Dong-hee Na added the comment: merged! Thank you for working on this!! @adkhunt ;) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker _

[issue42160] unnecessary overhead in tempfile

2020-10-29 Thread Inada Naoki
Inada Naoki added the comment: Thanks -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10 -Python 3.6, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker ___

[issue42201] Priority queue realization issue

2020-10-29 Thread Даниил Ляхов
New submission from Даниил Ляхов : In Priority queue realization in docs https://docs.python.org/3/library/heapq.html there is no appointments that priority can be equal and the task can have different type. For example, if you store number of graph node in your priority queue, than it is poss

[issue42202] Optimize function annotation

2020-10-29 Thread Inada Naoki
New submission from Inada Naoki : Look this example: code: ``` # code def foo(x: int, /, y, *, z: float) -> Hoge: pass # dis 2 12 LOAD_CONST 2 ('int') 14 LOAD_CONST 3 ('float') 16 LOAD_CONST 4 ('Hoge')

<    1   2