[issue41410] Opening a file in binary mode makes a difference on all platforms in Python 3

2020-08-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +20998 pull_request: https://github.com/python/cpython/pull/21873 ___ Python tracker ___ __

[issue41410] Opening a file in binary mode makes a difference on all platforms in Python 3

2020-08-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +21000 pull_request: https://github.com/python/cpython/pull/21875 ___ Python tracker ___ __

[issue41410] Opening a file in binary mode makes a difference on all platforms in Python 3

2020-08-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +20999 pull_request: https://github.com/python/cpython/pull/21874 ___ Python tracker ___ __

[issue41410] Opening a file in binary mode makes a difference on all platforms in Python 3

2020-08-13 Thread miss-islington
miss-islington added the comment: New changeset 2a9f709ba23c8f6aa2bed821aacc4e7baecde383 by Miss Islington (bot) in branch '3.8': bpo-41410: Fix outdated info in mkstemp docs (GH-21701) https://github.com/python/cpython/commit/2a9f709ba23c8f6aa2bed821aacc4e7baecde383 -- ___

[issue41410] Opening a file in binary mode makes a difference on all platforms in Python 3

2020-08-13 Thread miss-islington
miss-islington added the comment: New changeset 7c288413db8c2b84dd476b0c8a19f85110d99a2f by Miss Islington (bot) in branch '3.9': bpo-41410: Fix outdated info in mkstemp docs (GH-21701) https://github.com/python/cpython/commit/7c288413db8c2b84dd476b0c8a19f85110d99a2f -- ___

[issue41410] Opening a file in binary mode makes a difference on all platforms in Python 3

2020-08-13 Thread Eric V. Smith
Change by Eric V. Smith : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue41109] subclasses of pathlib.PurePosixPath never call __init__ or __new__

2020-08-13 Thread Jeffrey Kintscher
Jeffrey Kintscher added the comment: The current implementation calls object.__new__(cls), where cls is the child class type, from within a class method (@classmethod). This is fine for Path.__new__() and PurePath.__new__(), which are called by the child class's __new__(), because we don't

[issue41025] C implementation of ZoneInfo cannot be subclassed

2020-08-13 Thread Paul Ganssle
Paul Ganssle added the comment: New changeset 87d8287865e5c9f137f6b5cf8c34c2c509eb5e9d by Paul Ganssle in branch 'master': bpo-41025: Fix subclassing for zoneinfo.ZoneInfo (GH-20965) https://github.com/python/cpython/commit/87d8287865e5c9f137f6b5cf8c34c2c509eb5e9d -- __

[issue41025] C implementation of ZoneInfo cannot be subclassed

2020-08-13 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 1.0 -> 2.0 pull_requests: +21001 pull_request: https://github.com/python/cpython/pull/21876 ___ Python tracker _

[issue41541] Make pty.spawn set window size

2020-08-13 Thread Soumendra Ganguly
Soumendra Ganguly added the comment: OS: Linux 4.19.0-9-amd64 Debian 10 GNU/Linux -- ___ Python tracker ___ ___ Python-bugs-list ma

[issue40275] test.support has way too many imports

2020-08-13 Thread hai shi
hai shi added the comment: If someone wants to continue the effort in libregrtest, I suggest to open a new issue. +1. And if there have any other test cases blocked by test.support, I suggest this bpo. -- ___ Python tracker

[issue40275] test.support has way too many imports

2020-08-13 Thread hai shi
hai shi added the comment: oh, sorry, missing a word: I suggest this bpo.->I suggest close this bpo. -- ___ Python tracker ___ ___

[issue41547] Expose default __getstate__ and __setstate__

2020-08-13 Thread youkaichao
New submission from youkaichao : According to the doc ( https://docs.python.org/3/library/pickle.html#object.__getstate__ ), an object may not have a __getstate__ method. During pickling and unpickling, python first finds __getstate__ and __setstate__, which may invoke a customed __getattr__.

[issue40994] Very confusing documenation for abc.Collections

2020-08-13 Thread Georg Brandl
Georg Brandl added the comment: FWIW, I think Sydney's right. Shared entries should only be used for closely related, or interdependent, APIs, which those here are not. -- nosy: +georg.brandl ___ Python tracker

[issue41540] Test test_maxcontext_exact_arith (_decimal) consumes all memory on AIX

2020-08-13 Thread Tony Reix
Tony Reix added the comment: I forgot to say that this behavior was not present in stable version 3.8.5 . Sorry. On 2 machines AIX 7.2, testing Python 3.8.5 with: + cd /opt/freeware/src/packages/BUILD/Python-3.8.5 + ulimit -d unlimited + ulimit -m unlimited + ulimit -s unlimited + export LIB

[issue41547] Expose default __getstate__ and __setstate__

2020-08-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is virtually a duplicate of isssue26579. -- nosy: +serhiy.storchaka resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Support pickling slots in subclasses of common classes

[issue41548] IDLE Window rendering on macOS Big Sur

2020-08-13 Thread Roger Meier
New submission from Roger Meier : macOS Big Sur, Public Beta (20A5343j) There is noticeable window flickering when the IDLE window is being resized manually. It sometimes become translucent, and sometimes the window frame isn't properly refreshed after resizing, but simply by switching to ano

[issue41548] IDLE Window rendering on macOS Big Sur

2020-08-13 Thread Roger Meier
Roger Meier added the comment: I have screen capture demonstrating the issue, which I posted here: https://groups.google.com/g/thonny/c/529A5zEsuWg/m/xHVCny8OBwAJ -- type: -> behavior ___ Python tracker __

<    1   2