[issue42140] asyncio.wait function creates futures set two times

2020-11-01 Thread Jakub Stasiak
Change by Jakub Stasiak : -- nosy: +jstasiak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread miss-islington
miss-islington added the comment: New changeset 39a56e55231be00d52fa183fcd2b7d88619ced4b by Miss Skeleton (bot) in branch '3.8': [3.8] bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059) (GH-23070)

[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread miss-islington
miss-islington added the comment: New changeset 3defcbac2c9ff4306ed5b7fb37d12637eb188306 by Miss Skeleton (bot) in branch '3.9': [3.9] bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059) (GH-23071)

[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: duplicate -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue24380] Got warning when compiling _scproxy.c on Mac

2020-11-01 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm closing this as out of date because the code the compiler warns about is no longer present in the master branch. -- resolution: -> out of date stage: -> resolved status: open -> closed type: -> compile error

[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +21991 pull_request: https://github.com/python/cpython/pull/23071 ___ Python tracker ___

[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread Ronald Oussoren
Change by Ronald Oussoren : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread miss-islington
miss-islington added the comment: New changeset 2165cea548f961b308050f30d1f042a377651d44 by Ronald Oussoren in branch 'master': bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059) https://github.com/python/cpython/commit/2165cea548f961b308050f30d1f042a377651d44

[issue29566] binhex() creates files with mixed line endings

2020-11-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +21990 pull_request: https://github.com/python/cpython/pull/23070 ___ Python tracker ___

[issue13501] Make libedit support more generic; port readline / libedit to FreeBSD

2020-11-01 Thread Gregory P. Smith
Gregory P. Smith added the comment: at a glance, it looks like the PR needs updating. -- ___ Python tracker ___ ___

[issue42225] Tkinter hangs or crashes when displaying astral chars

2020-11-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I get a crash for chr(128516) ("") in Tk. $ wish % label .l -text  .l % X Error of failed request: BadLength (poly request too large or internal Xlib length error) Major opcode of failed request: 139 (RENDER) Minor opcode of failed request: 20

[issue42227] Unexpected sharing of list/set/dict between instances of the same class, when the list/set/dict is a default parameter value of the constructor

2020-11-01 Thread Steven D'Aprano
Steven D'Aprano added the comment: See also my comment here: https://bugs.python.org/msg361451 -- ___ Python tracker ___ ___

[issue42227] Unexpected sharing of list/set/dict between instances of the same class, when the list/set/dict is a default parameter value of the constructor

2020-11-01 Thread Steven D'Aprano
Steven D'Aprano added the comment: Sorry, this is not a bug, but working as designed. Default values for functions and methods are only created once, when the function is created, not on every call. This is a FAQ:

<    1   2