[issue34521] test_socket.Recvmsg[Into]SCMRightsStreamTest tests fail on AMD64 FreeBSD CURRENT

2018-09-27 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +9012 ___ Python tracker <https://bugs.python.org/issue34521> ___ ___ Python-bugs-list mailing list Unsub

[issue12782] Multiple context expressions do not support parentheses for continuation across lines

2018-09-28 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: The Python grammar is already not LL(1) strictly. Take for example the production for "argument": argument: ( test [comp_for] | test '=' test | '**' test | '*' test ) obviously the first sets of test and test

[issue12782] Multiple context expressions do not support parentheses for continuation across lines

2018-09-28 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: The DFA for the rule with_stmt: 'with' ( with_item (',' with_item)* | '(' with_item (',' with_item)* [

[issue12782] Multiple context expressions do not support parentheses for continuation across lines

2018-09-30 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +9036 ___ Python tracker <https://bugs.python.org/issue12782> ___ ___ Python-bugs-list mailin

[issue12782] Multiple context expressions do not support parentheses for continuation across lines

2018-09-30 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: -9036 ___ Python tracker <https://bugs.python.org/issue12782> ___ ___ Python-bugs-list mailing list Unsub

[issue12782] Multiple context expressions do not support parentheses for continuation across lines

2018-09-30 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Now that I think about this a bit better, this may be actually a problem as: with (yield something) as x: is a more than valid use case that will be broken with the simple grammar rule

[issue31310] semaphore tracker isn't protected against crashes

2018-10-03 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue31310> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33613] test_multiprocessing_fork: test_semaphore_tracker_sigint() fails with -W error

2018-10-09 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +9164 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issue33613> ___ ___ Py

[issue33613] test_multiprocessing_fork: test_semaphore_tracker_sigint() fails with -W error

2018-10-10 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 3058b7d85697f95573fa042d6b9e4d6e2a9e739c by Pablo Galindo in branch 'master': bpo-33613: Fix test_semaphore_tracker signal tests when using -Werror (GH-9778) https://github.com/python/cpyt

[issue33613] test_multiprocessing_fork: test_semaphore_tracker_sigint() fails with -W error

2018-10-10 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue33613> ___ ___

[issue34953] Implement `mmap.mmap.__repr__`

2018-10-13 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue34953> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34882] f(a=1, *args) should be a SyntaxError

2018-10-13 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue34882> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34939] Possibly spurious SyntaxError: annotated name can't be global

2018-10-13 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +9217 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue33234] Improve list() pre-sizing for inputs with known lengths

2018-10-13 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +9218 ___ Python tracker <https://bugs.python.org/issue33234> ___ ___ Python-bugs-list mailing list Unsub

[issue34521] Multiple tests (test_socket, test_multiprocessing_*) fail due to incorrect recvmsg(2) buffer lengths, causing failures on FreeBSD CURRENT

2018-10-13 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +9220 ___ Python tracker <https://bugs.python.org/issue34521> ___ ___ Python-bugs-list mailing list Unsub

[issue25246] Alternative algorithm for deque_remove()

2018-10-13 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +9221 ___ Python tracker <https://bugs.python.org/issue25246> ___ ___ Python-bugs-list mailing list Unsub

[issue26301] ceval.c: reintroduce fast-path for list[index] in BINARY_SUBSCR

2018-10-13 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +9223 ___ Python tracker <https://bugs.python.org/issue26301> ___ ___ Python-bugs-list mailing list Unsub

[issue34983] expose symtable.Symbol.is_nonlocal()

2018-10-14 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : The symtable has information about if a particular symbol is nonlocal though the DEF_LOCAL flag but this information is not exposed in symtable.py, making impossible to ask if a symbol is declared as nonlocal using the python symtable module

[issue34983] expose symtable.Symbol.is_nonlocal()

2018-10-14 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +9237 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue34521] Multiple tests (test_socket, test_multiprocessing_*) fail due to incorrect recvmsg(2) buffer lengths, causing failures on FreeBSD CURRENT

2018-10-14 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset bd036d3d15fc1310ccc32a43a3296b8c157ac221 by Pablo Galindo in branch 'master': bpo-34521: Add NEWS entry for changes in GH-9613 (GH-9850) https://github.com/python/cpython/commit/bd036d3d15fc1310ccc32a43a3296b

[issue34939] Possibly spurious SyntaxError: annotated name can't be global

2018-10-14 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset de2aea0ff02fa9486365ce9d215bef150fae3a0b by Pablo Galindo in branch 'master': bpo-34939: Allow annotated global names in module namespace (GH-9844) https://github.com/python/cpython/commit/de2aea0ff02fa9486365ce9d215bef

[issue34939] Possibly spurious SyntaxError: annotated name can't be global

2018-10-14 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue34939> ___ ___

[issue34890] Support functools.partial in inspect.is*function() checks

2018-10-15 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +9265 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue34805] Explicitly specify `MyClass.__subclasses__()` returns classes in definition order

2018-10-15 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Hi and thank you for the proposal. Could you detail a bit more about your use-case? Thanks -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue34

[issue34997] test.test_logging.ConfigDictTest.test_out_of_order fails in x86 Gentoo Refleaks 3.x

2018-10-16 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : When running the test_logging with the huntleaks option (-R), test_out_of_order fails: == FAIL: test_out_of_order (test.test_logging.ConfigDictTest

[issue34997] test.test_logging.ConfigDictTest.test_out_of_order fails in x86 Gentoo Refleaks 3.x

2018-10-16 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I'm working on this issue. -- ___ Python tracker <https://bugs.python.org/issue34997> ___ ___ Python-bugs-list m

[issue34997] test.test_logging.ConfigDictTest.test_out_of_order fails in x86 Gentoo Refleaks 3.x

2018-10-16 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Bisecting shows that 18fb1fb943b7dbd7f8a76017ee2a67ef13effb85 is the possible culprit. -- ___ Python tracker <https://bugs.python.org/issue34

[issue34997] test.test_logging.ConfigDictTest.test_out_of_order fails in x86 Gentoo Refleaks 3.x

2018-10-16 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +9271 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue34997] test.test_logging.ConfigDictTest.test_out_of_order fails in x86 Gentoo Refleaks 3.x

2018-10-16 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I opened PR 9913 to fix it ;) -- ___ Python tracker <https://bugs.python.org/issue34997> ___ ___ Python-bugs-list mailin

[issue34997] test.test_logging.ConfigDictTest.test_out_of_order fails in x86 Gentoo Refleaks 3.x

2018-10-16 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 137b0632dccb992ca11e9445142fb33a29c33a51 by Pablo Galindo in branch 'master': bpo-34997: Fix test_logging.ConfigDictTest.test_out_of_order (GH-9913) https://github.com/python/cpython/commit/137b0632dccb992ca11e9445142fb3

[issue34997] test.test_logging.ConfigDictTest.test_out_of_order fails in x86 Gentoo Refleaks 3.x

2018-10-16 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue28053] parameterize what serialization is used in multiprocessing

2018-10-18 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue28053> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28053] parameterize what serialization is used in multiprocessing

2018-10-18 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +9306 ___ Python tracker <https://bugs.python.org/issue28053> ___ ___ Python-bugs-list mailing list Unsub

[issue34573] Simplify __reduce__() of set and dict iterators.

2018-10-19 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 6395844e6adebc12c4eba1fb75c5e7c9c8b89f85 by Pablo Galindo (Sergey Fedoseev) in branch 'master': bpo-34573: Simplify __reduce__() of set and dict iterators. (GH-9050) https://github.com/python/cpyt

[issue34983] expose symtable.Symbol.is_nonlocal()

2018-10-19 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset d5b4f1b5a064c0d858352100fcddb91c363afa51 by Pablo Galindo in branch 'master': bpo-34983: Expose symtable.Symbol.is_nonlocal() in the symtable module (GH-9872) https://github.com/python/cpyt

[issue34983] expose symtable.Symbol.is_nonlocal()

2018-10-19 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue34983> ___ ___

[issue35024] Incorrect logging in importlib when '.pyc' file creation fails

2018-10-19 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue35024> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35031] test_asyncio test_start_tls_server_1 fails in

2018-10-20 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : https://buildbot.python.org/all/#/builders/168/builds/91 https://buildbot.python.org/all/#/builders/172/builds/41 https://buildbot.python.org/all/#/builders/173/builds/51 CURRENT-amd64% ./python -m test test_asyncio -m test_start_tls_server_1 Run

[issue31299] Add "ignore_modules" option to TracebackException.format()

2018-10-20 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : Removed file: https://bugs.python.org/file47284/traceback_filter.patch ___ Python tracker <https://bugs.python.org/issue31299> ___ ___

[issue35031] test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots

2018-10-20 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- title: test_asyncio test_start_tls_server_1 fails in -> test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots ___ Python tracker <https://bugs.python.org/issu

[issue35031] test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots

2018-10-20 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Bisecting points to commit dbf102271fcc316f353c7e0a283811b661d128f2 as the dirst bad commit: dbf102271fcc316f353c7e0a283811b661d128f2 is the first bad commit commit dbf102271fcc316f353c7e0a283811b661d128f2 Author: Yury Selivanov Date: Mon May 28 14

[issue35031] test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots

2018-10-20 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I think something is going on with the buildbot itself or the test has some race condition because that commit has been built before multiple times with no error. I am investigating in the buildbot itself

[issue35031] test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots

2018-10-20 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Building and testing the parent of dbf102271fcc316f353c7e0a283811b661d128f2 always succeeds. -- ___ Python tracker <https://bugs.python.org/issue35

[issue35031] test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots

2018-10-20 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: It seems that the problem is that the ServerProto of test_start_tls_server_1 never receives a call to eof_received(). Weirdly enough it seems that if the HELLO_MSG is large enough (1024 * 1024), then the test always succeed. If we deactivate tls in

[issue35031] test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots

2018-10-20 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Re-adding client_context.options |= ssl.OP_NO_TLSv1_3 makes the test pass again. -- ___ Python tracker <https://bugs.python.org/issue35

[issue35031] test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots

2018-10-20 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +9351 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35036] logger failure in suspicious.py

2018-10-21 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset c3f52a59ce8406d9e59253ad4621e4749abdaeef by Pablo Galindo (Xtreak) in branch 'master': bpo-35036: Remove empty log line in the suspicious.py tool (GH-10024) https://github.com/python/cpyt

[issue35036] logger failure in suspicious.py

2018-10-21 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue35036] logger failure in suspicious.py

2018-10-21 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Thanks @xtreak for the catch and PR! -- ___ Python tracker <https://bugs.python.org/issue35036> ___ ___ Python-bug

[issue35062] io.IncrementalNewlineDecoder assign out-of-range value to bitwise struct field

2018-10-25 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue35062> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35007] Minor change to weakref docs

2018-10-25 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue35007> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35064] COUNT_ALLOCS build export inc_count() and dec_count() functions which don't have a "Py_" prefix

2018-10-25 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue35064> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34890] Support functools.partial in inspect.is*function() checks

2018-10-26 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 7cd25434164882c2093ea41ccfc7b95a05cd5cbd by Pablo Galindo in branch 'master': bpo-34890: Make iscoroutinefunction, isgeneratorfunction and isasyncgenfunction work with functools.partial (GH-9903) https://github.com/python/cpyt

[issue34890] Support functools.partial in inspect.is*function() checks

2018-10-26 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue34279] RFC: issue a warning in regrtest when no tests have been executed?

2018-10-27 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +9477 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35064] COUNT_ALLOCS build export inc_count() and dec_count() functions which don't have a "Py_" prefix

2018-10-27 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +9478 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35064] COUNT_ALLOCS build export inc_count() and dec_count() functions which don't have a "Py_" prefix

2018-10-28 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 49c75a8086c3df9add0779d2479b8f09b95cdf3b by Pablo Galindo in branch 'master': bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-10152) https://github.com/python/cpyt

[issue35064] COUNT_ALLOCS build export inc_count() and dec_count() functions which don't have a "Py_" prefix

2018-10-28 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue35092] test_socket fails in MacOS High Sierra when running with -Werror

2018-10-28 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : == ERROR: testCmsgTruncLen0Plus1 (test.test_socket.RecvmsgIntoSCMRightsStreamTest) -- Traceback (most recent

[issue35092] test_socket fails in MacOS High Sierra when running with -Werror

2018-10-28 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Thank you very much for the quick response, @Ned! :) -- ___ Python tracker <https://bugs.python.org/issue35092> ___ ___

[issue23828] test_socket testCmsgTruncLen0 gets "received malformed or improperly-truncated ancillary data" warning under OS X

2018-10-28 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue23828> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35094] Improved algorithms for random.sample

2018-10-28 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +mark.dickinson, rhettinger ___ Python tracker <https://bugs.python.org/issue35094> ___ ___ Python-bugs-list mailin

[issue35095] Implement pathlib.Path.append_bytes and pathlib.Path.append_text

2018-10-28 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : Right now we have: Path.read_bytes Path.read_text Path.write_bytes Path.write_text as opening the file, appending something and closing the file is also a very typical operation to do it would be nice to have: Path.append_bytes Path.append_text

[issue35095] Implement pathlib.Path.append_bytes and pathlib.Path.append_text

2018-10-28 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +9512 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue33234] Improve list() pre-sizing for inputs with known lengths

2018-10-28 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 372d705d958964289d762953d0a61622755f5386 by Pablo Galindo in branch 'master': bpo-33234 Improve list() pre-sizing for inputs with known lengths (GH-9846) https://github.com/python/cpython/commit/372d705d958964289d762953d0a616

[issue33234] Improve list() pre-sizing for inputs with known lengths

2018-10-28 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +9518 ___ Python tracker <https://bugs.python.org/issue33234> ___ ___ Python-bugs-list mailing list Unsub

[issue33234] Improve list() pre-sizing for inputs with known lengths

2018-10-28 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: >Oh. Can you please document the optimization in the following doc as well? Sure! Opened https://github.com/python/cpython/pull/10200 to address that. :) -- ___ Python tracker <https://bugs.pyth

[issue35075] Doc: pprint example uses dead URL

2018-10-28 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +9519 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue33234] Improve list() pre-sizing for inputs with known lengths

2018-10-28 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset c61e229d2a4c54ffb4153e1f0f48126ba33c9cbf by Pablo Galindo in branch 'master': bpo-33234: Add exact allocation optimization to lists in What's New (GH-10200) https://github.com/python

[issue34945] regression with ./python -m test and pdb

2018-10-28 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +9522 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35096] Change _PY_VERSION to derive from sys.version_info in sysconfig

2018-10-28 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +tarek ___ Python tracker <https://bugs.python.org/issue35096> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35031] test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots

2018-10-29 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Someone needs to review PR10011 -- ___ Python tracker <https://bugs.python.org/issue35031> ___ ___ Python-bugs-list m

[issue35031] test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots

2018-10-29 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: > note: Roundup sent me comments as email notifications in the backward order, > that's funny to see Pablo's answer before my question :-) Maybe I just answered faster than th

[issue35095] Implement pathlib.Path.append_bytes and pathlib.Path.append_text

2018-10-29 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pitrou ___ Python tracker <https://bugs.python.org/issue35095> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35095] Implement pathlib.Path.append_bytes and pathlib.Path.append_text

2018-10-29 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Thanks @pitrou for the feedback! As you think this will not be that useful, I will close the issue and the proposal PR. -- stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue34945] regression with ./python -m test and pdb

2018-10-29 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 02277482ea765335e497ecd9661d4bde9b5ddc67 by Pablo Galindo in branch 'master': bpo-34945: Buffer output in test suite only when creating junit file (GH-10204) https://github.com/python/cpyt

[issue34945] regression with ./python -m test and pdb

2018-10-29 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: This should be fixed (it works now with and without -v). :) -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/i

[issue35031] test_asyncio test_start_tls_server_1 fails in AMD64 FreeBSD CURRENT buildbots

2018-10-29 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset f6a47f3e316cede2a07a1f74a509f6d80ab8fef0 by Pablo Galindo in branch 'master': bpo-35031: Fix test_start_tls_server_1 on FreeBSD buildbots (GH-10011) https://github.com/python/cpython/commit/f6a47f3e316cede2a07a1f74a509f6

[issue34945] regression with ./python -m test and pdb

2018-10-29 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: 3.6 and 3.7 are backported! -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/i

[issue35107] untokenize() fails on tokenize output when a newline is missing

2018-10-29 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue35107> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35066] Inconsistency between dangling '%' handling in time.strftime() and datetime.strftime()

2018-10-30 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue35066> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35127] pyurandom() fails if user does not have an entropy device

2018-10-31 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +christian.heimes ___ Python tracker <https://bugs.python.org/issue35127> ___ ___ Python-bugs-list mailing list Unsub

[issue35113] inspect.getsource returns incorrect source for classes when class definition is part of multiline strings

2018-10-31 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue35113> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35122] Process not exiting on unhandled exception when using multiprocessing module

2018-10-31 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Unless I don't understand the issue correctly, this is documented here: https://docs.python.org/3/library/multiprocessing.html#multiprocessing-programming Bear in mind that a process that has put items in a queue will wait before terminating unti

[issue34965] Python on Docker container using flask is going down after sometime

2018-10-31 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: What version of Python are you using? There is very few things we can do on out side if you don't provide some reproducer or some evidence that CPython is the source of this problem and not your application code or a third party module. Coul

[issue35105] Document that CPython accepts "invalid" identifiers

2018-10-31 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue35105> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35126] Mistake in FAQ about converting number to string.

2018-10-31 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Yep, this is incorrect in Python 2 unless `from __future__ import division` is imported at the beginning. Would you want to make a PR against the 2.7 branch to correct this? -- nosy: +pablogsal ___ Python

[issue35136] test_ssl fails in AMD64 FreeBSD CURRENT Shared 3.6 buildbot

2018-11-01 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : https://buildbot.python.org/all/#/builders/172/builds/40/steps/4/logs/stdio == ERROR: test_ciphers (test.test_ssl.SimpleBackgroundTests

[issue35136] test_ssl fails in AMD64 FreeBSD CURRENT Shared 3.6 buildbot

2018-11-01 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: There is also: Traceback (most recent call last): File "/usr/home/buildbot/python/3.6.koobs-freebsd-current/build/Lib/test/test_ssl.py", line 1860, in wrap_conn self.sock, server_side=True) File "/usr/home/buildbot/python/3.

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset b942707fc23454a998323c17e30be78ff1a4f0e7 by Pablo Galindo (BNMetrics) in branch 'master': bpo-29341: Clarify that path-like objects are accepted in some os methods (GH-10101) https://github.com/python/cpyt

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 8d2f88fb17468642813108977bb9ec5f7a065b84 by Pablo Galindo (BNMetrics) in branch '3.6': [3.6]bpo-29341: Backport b942707 3.6 (GH-10299) https://github.com/python/cpython/commit/8d2f88fb17468642813108977bb9ec

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 08026b103ea8f4c9f2b5045ef7806dd8b760da2b by Pablo Galindo (BNMetrics) in branch '3.7': [3.7]bpo-29341: Backport b942707 3.7 (#10298) https://github.com/python/cpython/commit/08026b103ea8f4c9f2b5045ef7806d

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: The docstrings are fixed and the m(anual!) backports to 3.7 and 3.6 are done. Very good job, Luna! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracke

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: The docstrings are fixed and the (manual!) backports to 3.7 and 3.6 are done. Very good job, Luna! -- ___ Python tracker <https://bugs.python.org/issue29

[issue29341] Missing accepting path-like object in docstrings of os module functions

2018-11-02 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- Removed message: https://bugs.python.org/msg329149 ___ Python tracker <https://bugs.python.org/issue29341> ___ ___ Python-bug

[issue34805] Explicitly specify `MyClass.__subclasses__()` returns classes in definition order

2018-11-06 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I would kindly suggest waiting until there is some consensus on this before doing any Pull Request. -- ___ Python tracker <https://bugs.python.org/issue34

[issue34011] Default preference not given to venv DLL's

2018-11-07 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: This buildbot is failing when raising when creating subprocess.CalledProcessError: https://buildbot.python.org/all/#/builders/40/builds/1135/steps/3/logs/stdio test_defaults (test.test_venv.BasicTest) ... ok test_executable (test.test_venv.BasicTest

[issue32409] venv activate.bat is UTF-8 encoded but uses current console codepage

2018-11-07 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: This commit broke a lot of the Windows buildbots: https://buildbot.python.org/all/#/builders/32/builds/1707 https://buildbot.python.org/all/#/builders/113/builds/733 https://buildbot.python.org/all/#/builders/40/builds/1137 https://buildbot.python.org

[issue34011] Default preference not given to venv DLL's

2018-11-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +9685 stage: resolved -> patch review ___ Python tracker <https://bugs.python.org/issue34011> ___ ___ Py

[issue32409] venv activate.bat is UTF-8 encoded but uses current console codepage

2018-11-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +9688 stage: resolved -> patch review ___ Python tracker <https://bugs.python.org/issue32409> ___ ___ Py

<    40   41   42   43   44   45   46   >