Fantix King added the comment:
This issue also causes similar behavior on some libraries like mechanize
which depend on urljoin
--
nosy: +fantix
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/
Change by Fantix King :
--
nosy: +fantix
nosy_count: 3.0 -> 4.0
pull_requests: +25844
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/8620
___
Python tracker
<https://bugs.python.org/i
Change by Fantix King :
--
nosy: +fantix
___
Python tracker
<https://bugs.python.org/issue33840>
___
___
Python-bugs-list mailing list
Unsubscribe:
Fantix King added the comment:
Following the discussion - looks like `add_reader()` will cancel the previous
`handle` on the same `fd` if found, so I think it is reasonable to solve this
cancellation-race issue by checking if the `handle` is cancelled as shown in
the attached patch (tests
Fantix King added the comment:
This should/will be fixed by GH-17975 I think - like suggested in the OpenSSL
comments, the proposed change will always try to run SSL_read() before
SSL_shutdown(), even after the close_notify is sent.
--
nosy: +fantix
Change by Fantix King :
--
pull_requests: +19633
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/20369
___
Python tracker
<https://bugs.python.org/issu
Fantix King added the comment:
Ouch ... looks like FreeBSD also needs a few more retries than a single retry.
I'll test on a FreeBSD and create a PR for that.
--
___
Python tracker
<https://bugs.python.org/is
Fantix King added the comment:
Not a simple one - FreeBSD is returning ECONNREFUSED immediately when trying to
connect to a non-listening port on the loopback address:
https://lists.freebsd.org/pipermail/freebsd-current/2005-May/049876.html
Then all following connect attempts on the same
Change by Fantix King :
--
pull_requests: +19743
pull_request: https://github.com/python/cpython/pull/20494
___
Python tracker
<https://bugs.python.org/issue30
Fantix King added the comment:
Thanks for the comments! Added PR 20494 to properly fix/skip the test for
(hopefully) all platforms.
--
___
Python tracker
<https://bugs.python.org/issue30
Fantix King added the comment:
I'm checking now
--
___
Python tracker
<https://bugs.python.org/issue30064>
___
___
Python-bugs-list mailing list
Unsubscr
Fantix King added the comment:
I've been testing on local VMs with Gentoo and Ubuntu, but the issue cannot be
reproduced. The error log is not really revealing anything useful, other than
that the send was blocked when it was supposed to be successful. As it is not
constantly faili
Fantix King added the comment:
Oh thank you for the clue, that's super helpful! Let me try locally.
This fix PR was originally done to solve a hanging call in a race condition, so
the test would hang forever if the fix is not working as expected. The 10
seconds wait_for() is to make
Fantix King added the comment:
OK I think I solved the problem by improving the two loops using smarter buffer
sizes:
# fill the buffer until sending 5 chars would block
size = 8192
while size > 5:
with self.assertRaises(BlockingIOEr
Fantix King added the comment:
and yes, updated the SO_SNDBUF too
--
___
Python tracker
<https://bugs.python.org/issue30064>
___
___
Python-bugs-list mailin
Change by Fantix King :
--
pull_requests: +20057
pull_request: https://github.com/python/cpython/pull/20868
___
Python tracker
<https://bugs.python.org/issue30
Change by Fantix King :
--
nosy: +fantix
___
Python tracker
<https://bugs.python.org/issue37179>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Fantix King :
--
keywords: +patch
pull_requests: +12343
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue34745>
___
___
Py
Change by Fantix King :
--
pull_requests: +12348
___
Python tracker
<https://bugs.python.org/issue34745>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Fantix King :
--
keywords: +patch
pull_requests: +8125
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue33062>
___
___
Py
Change by Fantix King :
--
nosy: +fantix
___
Python tracker
<https://bugs.python.org/issue33062>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Fantix King :
This was raised in GH-9460 where the same post handshake authentication (PHA)
was added to the ssl module. It should be added to asyncio too. This issue is
to discuss the design of PHA API in asyncio, and implement it in Python 3.8.
One approach is to add
Change by Fantix King :
--
nosy: +fantix
___
Python tracker
<https://bugs.python.org/issue34745>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Fantix King :
--
nosy: +Fantix King
___
Python tracker
<http://bugs.python.org/issue23794>
___
___
Python-bugs-list mailing list
Unsubscribe:
24 matches
Mail list logo