[issue37337] Add _PyObject_VectorcallMethod() function

2019-06-19 Thread Jeroen Demeyer
Change by Jeroen Demeyer : -- keywords: +patch pull_requests: +14064 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14228 ___ Python tracker ___

[issue37258] Logging cache not cleared properly when setting level

2019-06-19 Thread Vinay Sajip
Vinay Sajip added the comment: This is not actually a bug, but happens because the logger is instantiated directly, rather than through logging.getLogger(...). Because of the direct instantiation, the logger cache isn't tracked via setLevel() - because the logger doesn't end up in

[issue37339] os.path.ismount returns true on nested btrfs subvolumes

2019-06-19 Thread Eike Fokken
New submission from Eike Fokken : Lets say, we have a btrfs partion with subvolumes @, mounted at / and home, which was created directly inside @, such that after mounting @, it can be found at /home. Then os.path.ismount("/home") returns True I would not have expected that, because the

[issue37338] test_multiprocessing_forkserver: test_thousand() logged on AMD64 Ubuntu Shared 3.x: Exception ignored in:

2019-06-19 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +davin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37338] test_multiprocessing_forkserver: test_thousand() logged on AMD64 Ubuntu Shared 3.x: Exception ignored in:

2019-06-19 Thread STINNER Victor
STINNER Victor added the comment: Currently, SemLock does not provide a way to explicitly delete it. Maybe a new close() method should be added, similar to Process.close() and Pool.terminate(), to make resource management more deterministic (more reliable). --

[issue37331] logging.handlers.DatagramHandler sends bad data to socketserver.DatagramRequestHandler

2019-06-19 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37338] test_multiprocessing_forkserver: test_thousand() logged on AMD64 Ubuntu Shared 3.x: Exception ignored in:

2019-06-19 Thread STINNER Victor
New submission from STINNER Victor : Oh, I'm happy! My regrtest change (bpo-37069) to detect unraisable exception detected its first issue :-) AMD64 Ubuntu Shared 3.x: https://buildbot.python.org/all/#/builders/141/builds/2029 test_thousand

[issue37337] Add _PyObject_VectorcallMethod() function

2019-06-19 Thread Jeroen Demeyer
New submission from Jeroen Demeyer : To augment the various PyObject_CallMethod...() functions, we add _PyObject_VectorcallMethod() which uses the vectorcall calling convention. To be consistent with the other vectorcall functions, this function is provisional for now. For efficiency, the

[issue37301] CGIHTTPServer doesn't handle long POST requests

2019-06-19 Thread vsbogd
vsbogd added the comment: Hmm, seems strange I will try to reproduce and look at it. Have you run my demo which is attached to the bug? Does it reproduce problem on your machine? -- ___ Python tracker

[issue36710] Pass _PyRuntimeState as an argument rather than using the _PyRuntime global variable

2019-06-19 Thread STINNER Victor
STINNER Victor added the comment: New changeset 987a0dcfa1302df6c1ed8cf14762dc18628e3f33 by Victor Stinner in branch 'master': bpo-36710: Remove PyImport_Cleanup() function (GH-14221) https://github.com/python/cpython/commit/987a0dcfa1302df6c1ed8cf14762dc18628e3f33 --

[issue37336] os.sendfile() support missing for AIX platform

2019-06-19 Thread Michael Felt
New submission from Michael Felt : In AIX "sendfile()" is named send_file(). During testing I learned, unexpectedly, that AIX platform has never provided support of os.sendfile(). This is correct that oversight. >From this (and older) documentation - it seems all the bits needed are

[issue37243] test_sendfile in asyncio crashes when os.sendfile() is not supported

2019-06-19 Thread Michael Felt
Michael Felt added the comment: Closed. Not a bug in test_sendfile. -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35455] Solaris thread_time doesn't work with current implementation

2019-06-19 Thread Jakub Kulik
Jakub Kulik added the comment: Since I created this pull request, clock_gettime(CLOCK_THREAD_CPUTIME_ID, ..) was implemented into the Solaris kernel, so I guess that this is no longer relevant. -- resolution: -> not a bug stage: patch review -> resolved status: open -> closed

[issue37334] Add a cancel method to asyncio Queues

2019-06-19 Thread Andrew Svetlov
Andrew Svetlov added the comment: Sounds like `.close()` is better name for described behavior. -- ___ Python tracker ___ ___

[issue37335] Add 646 ASCII alias to locale coercion tests.

2019-06-19 Thread Jakub Kulik
Change by Jakub Kulik : -- keywords: +patch pull_requests: +14063 stage: -> patch review pull_request: https://github.com/python/cpython/pull/11195 ___ Python tracker ___

[issue37335] Add 646 ASCII alias to locale coercion tests.

2019-06-19 Thread Jakub Kulik
New submission from Jakub Kulik : Locale coercion tests on Solaris are failing because 646 ASCII alias is not recognized. Its addition into the _handle_output_variations function fixes this problem. This was changed/fixed in Python 3.8 and later, where aliases are correctly translated to

[issue37333] Fail build on windows 10(visual studio 2019)

2019-06-19 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Probably related issue where the flag was added to python.vcxproj : issue37288 -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, xtreak, zach.ware ___ Python tracker

[issue37334] Add a cancel method to asyncio Queues

2019-06-19 Thread Martin Teichmann
Change by Martin Teichmann : -- keywords: +patch pull_requests: +14061 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14227 ___ Python tracker

[issue37334] Add a cancel method to asyncio Queues

2019-06-19 Thread Martin Teichmann
New submission from Martin Teichmann : When working with queues, it is not uncommon that at some point the producer stops producing data for good, or the consumer stops consuming, for example because a network connection broke down or some user simply closed the session. In this situation it

[issue35431] Add a function for computing binomial coefficients to the math module

2019-06-19 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +14060 pull_request: https://github.com/python/cpython/pull/14226 ___ Python tracker ___

[issue37163] dataclasses.replace() fails with the field named "obj"

2019-06-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset f5b89afde1196ec9f74b7dc0333cec9bc4d4c2db by Serhiy Storchaka in branch '3.8': bpo-37163: Deprecate passing argument obj of dataclasses.replace() by keyword. (GH-13877)

<    1   2