[issue40460] [easy] undefined name in Lib/idlelib/zzdummy.py

2020-04-30 Thread STINNER Victor
New submission from STINNER Victor : pyflakes found the following issue: Lib/idlelib/zzdummy.py:31:33 undefined name 'ztest' Code: ztext = idleConf.GetOption('extensions', 'ZzDummy', 'z-text') (...) for line in range(1, text.index('end')): text.insert('%d.0', ztest) Maybe

[issue40462] [easy] undefined name in Lib/test/mock_socket.py

2020-04-30 Thread STINNER Victor
New submission from STINNER Victor : pyflakes found the following issues in sendall(): Lib/test/mock_socket.py:95:21 undefined name 'data' Lib/test/mock_socket.py:96:28 undefined name 'data' Lib/test/mock_socket.py:97:20 undefined name 'data' Code: def sendall(self, buffer, flags=None):

[issue40462] [easy] undefined name in Lib/test/mock_socket.py

2020-04-30 Thread STINNER Victor
STINNER Victor added the comment: Another one: Lib/test/test_frame.py:53:17 undefined name 'inner' I guess that self.inner() should be used instead of inner(). In practice, it's dead code, but fixing it would make pyflakes happier :-) -- ___ Pyth

[issue40462] [easy] undefined name in Lib/test/mock_socket.py

2020-04-30 Thread STINNER Victor
STINNER Victor added the comment: Another one: Lib/test/test_json/test_recursion.py:55:24 undefined name 'pyjson' Code: def test_defaultrecursion(self): class RecursiveJSONEncoder(self.json.JSONEncoder): recurse = False def default(self, o):

[issue40334] PEP 617: new PEG-based parser

2020-04-30 Thread STINNER Victor
STINNER Victor added the comment: Warnings found by pyflakes: Lib/test/test_tools/test_c_analyzer/test_parser/test_declarations.py:115:31 undefined name 'lines' Lib/test/test_tools/test_c_analyzer/test_parser/test_declarations.py:116:25 undefined name 'lines' Lib/test/test_tools/test_c_analy

[issue40462] [easy] undefined name in Lib/test/mock_socket.py

2020-04-30 Thread STINNER Victor
STINNER Victor added the comment: Another one: Lib/unittest/test/test_program.py:191:40 undefined name 'hasInstallHandler' Code: def testBufferCatchFailfast(self): program = self.program for arg, attr in (('buffer', 'buffer'), ('failfast', 'failfast'),

[issue40275] test.support has way too many imports

2020-04-30 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +19146 pull_request: https://github.com/python/cpython/pull/19825 ___ Python tracker ___ __

[issue40455] GCC 10 compiler warnings

2020-04-30 Thread STINNER Victor
STINNER Victor added the comment: Andy Lester: > Did you add any options to the ./configure call for cpython? What were they? I reported warnings that I saw on a buildbot build. Extract of https://buildbot.python.org/all/#/builders/351/builds/406. configure step: ./configure --prefix '

[issue40334] PEP 617: new PEG-based parser

2020-04-30 Thread Lysandros Nikolaou
Change by Lysandros Nikolaou : -- pull_requests: +19147 pull_request: https://github.com/python/cpython/pull/19827 ___ Python tracker ___ __

[issue40275] test.support has way too many imports

2020-04-30 Thread STINNER Victor
STINNER Victor added the comment: New changeset 2935e65c36fab1989bbda19db72c035ea22b044b by Victor Stinner in branch 'master': bpo-40275: Fix name error in support.socket_helper (GH-19825) https://github.com/python/cpython/commit/2935e65c36fab1989bbda19db72c035ea22b044b --

[issue40443] Remove unused imports in the stdlib (April 2020 edition)

2020-04-30 Thread STINNER Victor
STINNER Victor added the comment: Thanks for reviews! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue40443] Remove unused imports in the stdlib (April 2020 edition)

2020-04-30 Thread STINNER Victor
STINNER Victor added the comment: New changeset eb0d359b4b0e14552998e7af771a088b4fd01745 by Victor Stinner in branch 'master': bpo-40443: Remove unused imports in stdlib (GH-19815) https://github.com/python/cpython/commit/eb0d359b4b0e14552998e7af771a088b4fd01745 --

[issue40334] PEP 617: new PEG-based parser

2020-04-30 Thread Guido van Rossum
Change by Guido van Rossum : -- pull_requests: +19148 pull_request: https://github.com/python/cpython/pull/19828 ___ Python tracker ___

[issue39321] AMD64 FreeBSD Non-Debug 3.x: out of swap space (test process killed by signal 9)

2020-04-30 Thread Kubilay Kocak
Kubilay Kocak added the comment: Provisioning new/additional swap to both of FreeBSD BB workers in the next few days. Apologies for the delay -- ___ Python tracker ___ __

[issue32604] Expose the subinterpreters C-API in Python for testing use.

2020-04-30 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +19149 pull_request: https://github.com/python/cpython/pull/19829 ___ Python tracker ___ ___

[issue40334] PEP 617: new PEG-based parser

2020-04-30 Thread Guido van Rossum
Change by Guido van Rossum : -- pull_requests: +19150 pull_request: https://github.com/python/cpython/pull/19830 ___ Python tracker ___

[issue40334] PEP 617: new PEG-based parser

2020-04-30 Thread Guido van Rossum
Guido van Rossum added the comment: New changeset 3e0a6f37dfdd595be737baae00ec0e036a912615 by Lysandros Nikolaou in branch 'master': bpo-40334: Add support for feature_version in new PEG parser (GH-19827) https://github.com/python/cpython/commit/3e0a6f37dfdd595be737baae00ec0e036a912615

[issue40463] csv.reader split error

2020-04-30 Thread wy7305e
New submission from wy7305e : #python 3.6 or python 3.8 csv.reader delimiter=',' quotechar='"' split this sentence: "A word of encouragement and explanation, of pity for my childish ignorance, of welcome home, of reassurance to me that it was home, might have made me dutiful to him in my h

[issue40463] csv.reader split error

2020-04-30 Thread SilentGhost
Change by SilentGhost : -- type: enhancement -> behavior versions: +Python 3.7, Python 3.8 -Python 3.6 ___ Python tracker ___ ___ Py

<    1   2