[issue17794] Add a key parameter to PriorityQueue

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: Starting in Python 3.7, dataclasses made it trivially easy to work around this issue. The PriorityQueue docs have a worked out example of how to do this: https://docs.python.org/3/library/queue.html#queue.PriorityQueue -- resolution: -> out of d

[issue17794] Add a key parameter to PriorityQueue

2014-05-12 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue17794] Add a key parameter to PriorityQueue

2013-04-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Related issues: issue4356, issue13742. See also issue1185383, issue1904 and issue1162363. -- nosy: +serhiy.storchaka title: Priority Queue -> Add a key parameter to PriorityQueue type: behavior -> enhancement versions: -Python 3.3 __