Change by Pablo Galindo Salgado :
--
pull_requests: +9012
___
Python tracker
<https://bugs.python.org/issue34521>
___
___
Python-bugs-list mailing list
Unsub
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
Pablo Galindo Salgado added the comment:
The DFA for the rule
with_stmt: 'with' ( with_item (',' with_item)* | '(' with_item (',' with_item)*
[
Change by Pablo Galindo Salgado :
--
keywords: +patch
pull_requests: +9036
___
Python tracker
<https://bugs.python.org/issue12782>
___
___
Python-bugs-list mailin
Change by Pablo Galindo Salgado :
--
pull_requests: -9036
___
Python tracker
<https://bugs.python.org/issue12782>
___
___
Python-bugs-list mailing list
Unsub
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
Change by Pablo Galindo Salgado :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue31310>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Pablo Galindo Salgado :
--
pull_requests: +9164
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issue33613>
___
___
Py
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
Change by Pablo Galindo Salgado :
--
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue33613>
___
___
Change by Pablo Galindo Salgado :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue34953>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Pablo Galindo Salgado :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue34882>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Pablo Galindo Salgado :
--
keywords: +patch
pull_requests: +9217
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issu
Change by Pablo Galindo Salgado :
--
pull_requests: +9218
___
Python tracker
<https://bugs.python.org/issue33234>
___
___
Python-bugs-list mailing list
Unsub
Change by Pablo Galindo Salgado :
--
pull_requests: +9220
___
Python tracker
<https://bugs.python.org/issue34521>
___
___
Python-bugs-list mailing list
Unsub
Change by Pablo Galindo Salgado :
--
pull_requests: +9221
___
Python tracker
<https://bugs.python.org/issue25246>
___
___
Python-bugs-list mailing list
Unsub
Change by Pablo Galindo Salgado :
--
pull_requests: +9223
___
Python tracker
<https://bugs.python.org/issue26301>
___
___
Python-bugs-list mailing list
Unsub
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
Change by Pablo Galindo Salgado :
--
keywords: +patch
pull_requests: +9237
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issu
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
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
Change by Pablo Galindo Salgado :
--
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue34939>
___
___
Change by Pablo Galindo Salgado :
--
keywords: +patch
pull_requests: +9265
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issu
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
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
Pablo Galindo Salgado added the comment:
I'm working on this issue.
--
___
Python tracker
<https://bugs.python.org/issue34997>
___
___
Python-bugs-list m
Pablo Galindo Salgado added the comment:
Bisecting shows that 18fb1fb943b7dbd7f8a76017ee2a67ef13effb85 is the possible
culprit.
--
___
Python tracker
<https://bugs.python.org/issue34
Change by Pablo Galindo Salgado :
--
keywords: +patch
pull_requests: +9271
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issu
Pablo Galindo Salgado added the comment:
I opened PR 9913 to fix it ;)
--
___
Python tracker
<https://bugs.python.org/issue34997>
___
___
Python-bugs-list mailin
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
Change by Pablo Galindo Salgado :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Pablo Galindo Salgado :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue28053>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Pablo Galindo Salgado :
--
pull_requests: +9306
___
Python tracker
<https://bugs.python.org/issue28053>
___
___
Python-bugs-list mailing list
Unsub
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
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
Change by Pablo Galindo Salgado :
--
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue34983>
___
___
Change by Pablo Galindo Salgado :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue35024>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Pablo Galindo Salgado :
Removed file: https://bugs.python.org/file47284/traceback_filter.patch
___
Python tracker
<https://bugs.python.org/issue31299>
___
___
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
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
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
Pablo Galindo Salgado added the comment:
Building and testing the parent of dbf102271fcc316f353c7e0a283811b661d128f2
always succeeds.
--
___
Python tracker
<https://bugs.python.org/issue35
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
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
Change by Pablo Galindo Salgado :
--
keywords: +patch
pull_requests: +9351
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issu
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
Change by Pablo Galindo Salgado :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Pablo Galindo Salgado added the comment:
Thanks @xtreak for the catch and PR!
--
___
Python tracker
<https://bugs.python.org/issue35036>
___
___
Python-bug
Change by Pablo Galindo Salgado :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue35062>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Pablo Galindo Salgado :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue35007>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Pablo Galindo Salgado :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue35064>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Pablo Galindo Salgado :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Pablo Galindo Salgado :
--
keywords: +patch
pull_requests: +9477
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issu
Change by Pablo Galindo Salgado :
--
keywords: +patch
pull_requests: +9478
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issu
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
Change by Pablo Galindo Salgado :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
New submission from Pablo Galindo Salgado :
==
ERROR: testCmsgTruncLen0Plus1 (test.test_socket.RecvmsgIntoSCMRightsStreamTest)
--
Traceback (most recent
Pablo Galindo Salgado added the comment:
Thank you very much for the quick response, @Ned! :)
--
___
Python tracker
<https://bugs.python.org/issue35092>
___
___
Change by Pablo Galindo Salgado :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue23828>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Pablo Galindo Salgado :
--
nosy: +mark.dickinson, rhettinger
___
Python tracker
<https://bugs.python.org/issue35094>
___
___
Python-bugs-list mailin
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
Change by Pablo Galindo Salgado :
--
keywords: +patch
pull_requests: +9512
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issu
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
Change by Pablo Galindo Salgado :
--
pull_requests: +9518
___
Python tracker
<https://bugs.python.org/issue33234>
___
___
Python-bugs-list mailing list
Unsub
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
Change by Pablo Galindo Salgado :
--
keywords: +patch
pull_requests: +9519
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issu
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
Change by Pablo Galindo Salgado :
--
keywords: +patch
pull_requests: +9522
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issu
Change by Pablo Galindo Salgado :
--
nosy: +tarek
___
Python tracker
<https://bugs.python.org/issue35096>
___
___
Python-bugs-list mailing list
Unsubscribe:
Pablo Galindo Salgado added the comment:
Someone needs to review PR10011
--
___
Python tracker
<https://bugs.python.org/issue35031>
___
___
Python-bugs-list m
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
Change by Pablo Galindo Salgado :
--
nosy: +pitrou
___
Python tracker
<https://bugs.python.org/issue35095>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
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
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
Change by Pablo Galindo Salgado :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue35107>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Pablo Galindo Salgado :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue35066>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Pablo Galindo Salgado :
--
nosy: +christian.heimes
___
Python tracker
<https://bugs.python.org/issue35127>
___
___
Python-bugs-list mailing list
Unsub
Change by Pablo Galindo Salgado :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue35113>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Change by Pablo Galindo Salgado :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue35105>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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.
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
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
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
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
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
Change by Pablo Galindo Salgado :
--
Removed message: https://bugs.python.org/msg329149
___
Python tracker
<https://bugs.python.org/issue29341>
___
___
Python-bug
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
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
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
Change by Pablo Galindo Salgado :
--
pull_requests: +9685
stage: resolved -> patch review
___
Python tracker
<https://bugs.python.org/issue34011>
___
___
Py
Change by Pablo Galindo Salgado :
--
pull_requests: +9688
stage: resolved -> patch review
___
Python tracker
<https://bugs.python.org/issue32409>
___
___
Py
4401 - 4500 of 4566 matches
Mail list logo