Senthil Kumaran added the comment:
Yes, this was related to the Linux OOM Killer. The agent went down
shortly after this. Either multiple parallel jobs might have led to OOM
or something else. I will see if logs provide more information
Senthil Kumaran added the comment:
> Maybe you should give more memory to your worker, or you should spawn less
> jobs in parallel
It was related to high number of jobs in that particular agent and result in
OOM Kill from the Linux kernel - https://pastebin.com/559H4ksa
The machi
Change by Senthil Kumaran :
--
nosy: +orsenthil
___
Python tracker
<https://bugs.python.org/issue44359>
___
___
Python-bugs-list mailing list
Unsubscribe:
Senthil Kumaran added the comment:
Yes, closing this.
--
resolution: -> not a bug
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Senthil Kumaran :
--
keywords: +patch
nosy: +orsenthil
nosy_count: 3.0 -> 4.0
pull_requests: +26153
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/27664
___
Python tracker
<https://bugs.python.org/i
Senthil Kumaran added the comment:
New changeset ebecffdb6d5fffa4249f9a813f1fc1915926feb5 by Senthil Kumaran in
branch 'main':
bpo-44830 - Remove the broken Broken Mozilla devguide link. (GH-27664)
https://github.com/python/cpython/commit/ebecffdb6d5fffa4249f9a813f1fc1
Change by Senthil Kumaran :
--
pull_requests: +26155
pull_request: https://github.com/python/cpython/pull/27666
___
Python tracker
<https://bugs.python.org/issue44
Senthil Kumaran added the comment:
New changeset 6a6bcf16370beff2e0d1a034661654d5c335b5ee by Miss Islington (bot)
in branch '3.9':
bpo-44830 - Remove the broken Broken Mozilla devguide link. (GH-27664)
(GH-27665)
https://github.com/python/cpyt
Senthil Kumaran added the comment:
@Jack, if you review this backport -
https://github.com/python/cpython/pull/27666 , I can merge this PR.
--
___
Python tracker
<https://bugs.python.org/issue44
New submission from Senthil Kumaran :
I verified that ncurses-devel is installed.
./configure is able to verify ncurses
checking curses.h usability... yes
checking curses.h presence... yes
checking for curses.h... yes
checking ncurses.h usability... yes
checking ncurses.h presence... yes
Senthil Kumaran added the comment:
Here is the output of make with relevant lines.
CC='gcc -pthread' LDSHARED='gcc -pthread -shared' OPT='-DNDEBUG -g -fwrapv
-O3 -Wall' _TCLTK_INCLUDES='' _TCLTK_LIBS='' ./python -E ./setup.p
Senthil Kumaran added the comment:
A change like this will be required since these funcs were introduced only
recently and nurses shipped with centos was older.
% git diff
diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c
index 61aaf85522..6fb6c490e6 100644
--- a/Modules
Change by Senthil Kumaran :
--
keywords: +patch
pull_requests: +26680
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/28260
___
Python tracker
<https://bugs.python.org/issu
Senthil Kumaran added the comment:
I have created a pull request - https://github.com/python/cpython/pull/28260
Please review this.
--
assignee: -> orsenthil
versions: +Python 3.10, Python 3.9
___
Python tracker
<https://bugs.pyth
Senthil Kumaran added the comment:
New changeset 794430700defb913512f871b701a888aa730de81 by Senthil Kumaran in
branch 'main':
bpo-45067 - Verify the version of ncurses for extended color support feature
usage. (GH-28260)
https://github.com/python/cpyt
Change by Senthil Kumaran :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
versions: -Python 3.9
___
Python tracker
<https://bugs.python.or
Senthil Kumaran added the comment:
New changeset c379bc5ec9012cf66424ef3d80612cf13ec51006 by Jochem Schulenklopper
in branch 'main':
bpo-40321: Support HTTP response status code 308 in urllib.request (#19588)
https://github.com/python/cpython/commit/c379bc5ec9012cf66424ef3d80612c
Senthil Kumaran added the comment:
+1 to these modules removal.
One concern I have is when users follow internet examples and look out for
these modules or examples.
What is the best way to show them the modern usage?
- Should Python docs show some example snippet of the most common usage
Senthil Kumaran added the comment:
> Timeout value should not be reset after client receives a data(bytes),
> because it can easily be abused to achieve DOS.
Interesting. I looked the server example.
Does clients like curl have something like th
Senthil Kumaran added the comment:
Hi Muhammad,
I haven't gotten to this. urllib doesn't maintain a client state during
multiple request / response.
The code is available here
https://github.com/python/cpython/tree/main/
Change by Senthil Kumaran :
--
assignee: -> orsenthil
nosy: +orsenthil
___
Python tracker
<https://bugs.python.org/issue38686>
___
___
Python-bugs-list mai
Change by Senthil Kumaran :
--
versions: +Python 3.8 -Python 3.6
___
Python tracker
<https://bugs.python.org/issue38686>
___
___
Python-bugs-list mailin
Senthil Kumaran added the comment:
New changeset 14a89c47983f2fb9e7fdf33c769e622eefd3a14a by Senthil Kumaran
(PypeBros) in branch 'master':
bpo-38686: fix HTTP Digest handling in request.py (#17045)
https://github.com/python/cpython/commit/14a89c47983f2fb9e7fdf33c769e62
Change by Senthil Kumaran :
--
versions: +Python 3.7
___
Python tracker
<https://bugs.python.org/issue38686>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Senthil Kumaran :
--
versions: +Python 3.9 -Python 2.7, Python 3.7
___
Python tracker
<https://bugs.python.org/issue38686>
___
___
Python-bugs-list m
Change by Senthil Kumaran :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
type: -> behavior
___
Python tracker
<https://bugs.python
Senthil Kumaran added the comment:
New changeset f82e59ac4020a64c262a925230a8eb190b652e87 by Senthil Kumaran in
branch '2.7':
[2.7] bpo-27973 - Fix for urllib.urlretrieve() failing on second ftp transfer
(#1040)
https://github.com/python/cpyt
Senthil Kumaran added the comment:
New changeset f82e59ac4020a64c262a925230a8eb190b652e87 by Senthil Kumaran in
branch '2.7':
[2.7] bpo-27973 - Fix for urllib.urlretrieve() failing on second ftp transfer
(#1040)
https://github.com/python/cpyt
Change by Senthil Kumaran :
--
resolution: -> fixed
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue27973>
___
___
Change by Senthil Kumaran :
--
pull_requests: +17207
stage: resolved -> patch review
pull_request: https://github.com/python/cpython/pull/17774
___
Python tracker
<https://bugs.python.org/issu
Senthil Kumaran added the comment:
Thanks for the note, Pablo.
I am going to check if this patch https://github.com/python/cpython/pull/17774
will solve the Windows buildbot issues.
--
stage: patch review -> resolved
___
Python tracker
<
Senthil Kumaran added the comment:
Hi Pablo, Is there a way for us to test
https://github.com/python/cpython/pull/17774 on a Windows Builder which
displayed the post-commit failure?
The CI custom-builders seem to be broken for a different reason:
https://buildbot.python.org/all/#/builders
Senthil Kumaran added the comment:
Thanks for the suggestion, David. I have updated the PR 17774 to use
temp_support instead of NamedTemporaryFile. Please review this.
--
___
Python tracker
<https://bugs.python.org/issue27
Senthil Kumaran added the comment:
Sorry, I have updated it now: https://github.com/python/cpython/pull/17774
(I had pushed to a different branch earlier and it didn't reflect in my PR)
--
___
Python tracker
<https://bugs.python.org/is
Change by Senthil Kumaran :
--
nosy: -Joony898i
title: SEO Services Development & PHP development -> Redirect is not working
correctly in urllib2
___
Python tracker
<https://bugs.python.org/
Senthil Kumaran added the comment:
New changeset 5bba60290b4ac8c95ac46cfdaba5deee37be1fab by Senthil Kumaran in
branch '2.7':
bpo-27973 - Use test.support.temp_dir instead of NamedTemporaryFile for the
(#17774)
https://github.com/python/cpyt
Change by Senthil Kumaran :
--
pull_requests: +17245
stage: resolved -> patch review
pull_request: https://github.com/python/cpython/pull/17819
___
Python tracker
<https://bugs.python.org/issu
Senthil Kumaran added the comment:
@James - Originally the issue was considered a revert and the versions were set
for the merge, but I certainly recognize the problem when parsing can fail for
simple URLs like `localhost:8000` which is very common.
Another developer had raised the concerns
Change by Senthil Kumaran :
--
nosy: +orsenthil
___
Python tracker
<https://bugs.python.org/issue17005>
___
___
Python-bugs-list mailing list
Unsubscribe:
Senthil Kumaran added the comment:
Hi Ido, there was a change requested by a core-dev, Zachary , on your PR.
> Please have a look at PEP 257 for docstring formatting guidelines.
https://github.com/python/cpython/pull/16458/files#r353422155
Please let us know if that is addres
Senthil Kumaran added the comment:
Hi Lukaz / Ned:
I will like to revert the backports done in 3.8 and 3.7.
Preferably in 3.8.2 and 3.7.7, so that this undesirable behavior exists only
for a single release.
I have set this is a release blocker to catch your attention.
--
nosy
Senthil Kumaran added the comment:
Welcome to work on the patch, Amir.
* We shouldn't be encoding anything.
* Create reject for Unicode control characters and reject the request if the
request contains any control character. Write tests for this.
It will similar to one of the exa
Change by Senthil Kumaran :
--
keywords: +patch
pull_requests: +17902
stage: commit review -> patch review
pull_request: https://github.com/python/cpython/pull/18525
___
Python tracker
<https://bugs.python.org/issu
Change by Senthil Kumaran :
--
pull_requests: +17903
pull_request: https://github.com/python/cpython/pull/18526
___
Python tracker
<https://bugs.python.org/issue27
Senthil Kumaran added the comment:
New changeset 505b6015a1579fc50d9697e4a285ecc64976397a by Senthil Kumaran in
branch '3.7':
Revert "bpo-27657: Fix urlparse() with numeric paths (GH-661)" (#18526)
https://github.com/python/cpython/commit/505b6015a1579fc50d96
Senthil Kumaran added the comment:
New changeset ea316fd21527dec53e704a5b04833ac462ce3863 by Senthil Kumaran in
branch '3.8':
Revert "[3.8] bpo-27657: Fix urlparse() with numeric paths (GH-16839)"
(GH-18525)
https://github.com/python/cpython/commit/ea316fd21527dec53e70
Senthil Kumaran added the comment:
Hi Łukasz, There was a concern raised by python core-devs about behavior in
3.9. I plan to address that point raised in this issue and close this ticket.
--
___
Python tracker
<https://bugs.python.org/issue27
Senthil Kumaran added the comment:
New changeset 5e260e0fde211829fcb67060cfd602f4b679f802 by Stephen Balousek in
branch 'master':
bpo-39548: Fix handling of 'WWW-Authenticate' header for Digest Auth (GH-18338)
https://github.com/python/cpython/commit/5e260e0fde211829fcb6
Change by Senthil Kumaran :
--
assignee: -> orsenthil
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python
Change by Senthil Kumaran :
--
assignee: -> orsenthil
nosy: +orsenthil
___
Python tracker
<https://bugs.python.org/issue38976>
___
___
Python-bugs-list mai
Change by Senthil Kumaran :
--
nosy: +orsenthil
___
Python tracker
<https://bugs.python.org/issue40291>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Senthil Kumaran :
--
keywords: +patch
pull_requests: +22473
stage: needs patch -> patch review
pull_request: https://github.com/python/cpython/pull/23604
___
Python tracker
<https://bugs.python.org/issu
Senthil Kumaran added the comment:
I spent some time reviewing and researching the specification. It also says
The server is not required to create meta-variables for all the
header fields that it receives.
And this in issue, open since 2010, we have issue two different set of
Change by Senthil Kumaran :
--
assignee: -> orsenthil
versions: +Python 3.10, Python 3.9 -Python 2.6, Python 2.7, Python 3.1, Python
3.2
___
Python tracker
<https://bugs.python.org/iss
Change by Senthil Kumaran :
--
pull_requests: +22506
pull_request: https://github.com/python/cpython/pull/23638
___
Python tracker
<https://bugs.python.org/issue5
Change by Senthil Kumaran :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.o
Senthil Kumaran added the comment:
This was also resolved in 3.10 https://github.com/python/cpython/pull/23638
--
___
Python tracker
<https://bugs.python.org/issue5
Change by Senthil Kumaran :
--
versions: +Python 3.10 -Python 2.7, Python 3.5, Python 3.6
___
Python tracker
<https://bugs.python.org/issue18140>
___
___
Pytho
Senthil Kumaran added the comment:
Not a bug. The message #msg375109 explains how to quote and unquote the '#' in
the password field, and demonstrates how urllib parses it correctly.
I guess, it was set to open as a mistake. Closing it again.
--
stage: -> resolved
Change by Senthil Kumaran :
--
title: urllib2 fails for proxy credentials that contain a '/' character ->
urllib.request fails for proxy credentials that contain a '/' character
versions: +Python 3.10 -Python 2.7
___
Senthil Kumaran added the comment:
This is resolved by Issue 31122 and code now raises SSLEOFError instead of
OSError.
The reason for OSError in the first place was PySSL_SetError function had the
following call s->errorhandler();
https://github.com/python/cpython/blob/3.7/Modules/_ss
Change by Senthil Kumaran :
--
components: +Library (Lib) -Documentation
versions: +Python 3.10, Python 3.9
___
Python tracker
<https://bugs.python.org/issue41
Change by Senthil Kumaran :
--
keywords: +patch
pull_requests: +22818
stage: needs patch -> patch review
pull_request: https://github.com/python/cpython/pull/23973
___
Python tracker
<https://bugs.python.org/issu
Senthil Kumaran added the comment:
https://github.com/python/cpython/pull/23973 will resolve this issue. The
issue was localized to _parse_proxy method in urllib2.
--
___
Python tracker
<https://bugs.python.org/issue23
Change by Senthil Kumaran :
--
keywords: -easy
versions: +Python 3.10 -Python 2.6
___
Python tracker
<https://bugs.python.org/issue1398781>
___
___
Python-bug
Change by Senthil Kumaran :
--
versions: +Python 3.10 -Python 2.6, Python 2.7, Python 3.1, Python 3.2
___
Python tracker
<https://bugs.python.org/issue8
Senthil Kumaran added the comment:
This is a not a bug, it asks for parameter types to explained. API
documentation reference should provide the guidance.
--
nosy: +orsenthil
resolution: -> wont fix
stage: -> resolved
status: open -> closed
versions: +Python 3.10 -P
Change by Senthil Kumaran :
--
assignee: docs@python -> orsenthil
versions: +Python 3.10 -Python 2.6, Python 2.7, Python 3.1
___
Python tracker
<https://bugs.python.org/iss
Change by Senthil Kumaran :
--
versions: +Python 3.8, Python 3.9
___
Python tracker
<https://bugs.python.org/issue23328>
___
___
Python-bugs-list mailin
Senthil Kumaran added the comment:
Merged in
3.10 -
https://github.com/python/cpython/commit/030a713183084594659aefd77b76fe30178e23c8
3.9 -
https://github.com/python/cpython/commit/df794406a8803e3d6062af8404d7564833f9af28
3.8 -
https://github.com/python/cpython/commit
Change by Senthil Kumaran :
--
nosy: +orsenthil
___
Python tracker
<https://bugs.python.org/issue42967>
___
___
Python-bugs-list mailing list
Unsubscribe:
Senthil Kumaran added the comment:
> IMO we should disable ASAN (handling of signals) at runtime when we trigger a
> crash on purpose (ex: faulthandler._sigsegv()).
> ASAN_OPTIONS="handle_segv=0".
Both sound reasonable. But not sure if they will resolve this crash toug
Senthil Kumaran added the comment:
Ken, Please don't close your PR. I will review it. It has a CLA signed
which is helpful.
On Fri, Jan 22, 2021 at 4:53 AM Ken Jin wrote:
>
> Ken Jin added the comment:
>
> Adam, I linked a PR 2 days ago here
> https://github.com/pytho
Senthil Kumaran added the comment:
+1. The suggested fix looks good to me.
--
___
Python tracker
<https://bugs.python.org/issue43075>
___
___
Python-bugs-list m
Senthil Kumaran added the comment:
Ned, and others watching.
In future versions of Python, we can use only "&" based separator. But I am not
certain what should be proposed for the older releases of Python.
Adam's Patch is a good one to specify explicitly specify th
Change by Senthil Kumaran :
--
assignee: -> orsenthil
___
Python tracker
<https://bugs.python.org/issue42967>
___
___
Python-bugs-list mailing list
Unsubscrib
Senthil Kumaran added the comment:
Sorry for that, Ned. I will take a decision on this by Saturday (13-Feb).
I did some research, but could come way conclusively. I have not heard any
opinions (+ves or -ves) on this. This will be a breaking change, so necessary
to support it with
Senthil Kumaran added the comment:
I meant, "I did some research, but couldn't come away conclusively".
--
___
Python tracker
<https://bugs.pyt
Senthil Kumaran added the comment:
I finished reviewing this PR https://github.com/python/cpython/pull/24297
With the contexts given in W3C recommendation, Synk.io Security Report and
pattern of usage in libraries like werkzeug and bottle, instead of ignoring
this and letting this behavior
Senthil Kumaran added the comment:
Éric, I considered the possibility of bringing it in python-dev, but thought it
could be decided in this ticket itself.
1. This was already brought up by multiple Release Managers in Python-dev, and
some conversation seems to have happened there previously
Senthil Kumaran added the comment:
New changeset fcbe0cb04d35189401c0c880ebfb4311e952d776 by Adam Goldschmidt in
branch 'master':
bpo-42967: only use '&' as a query string separator (#24297)
https://github.com/python/cpython/commit/fcbe0cb04d351894
Change by Senthil Kumaran :
--
pull_requests: +23315
pull_request: https://github.com/python/cpython/pull/24528
___
Python tracker
<https://bugs.python.org/issue42
Change by Senthil Kumaran :
--
pull_requests: +23316
pull_request: https://github.com/python/cpython/pull/24529
___
Python tracker
<https://bugs.python.org/issue42
Change by Senthil Kumaran :
--
pull_requests: +23318
pull_request: https://github.com/python/cpython/pull/24531
___
Python tracker
<https://bugs.python.org/issue42
Change by Senthil Kumaran :
--
pull_requests: +23319
pull_request: https://github.com/python/cpython/pull/24532
___
Python tracker
<https://bugs.python.org/issue42
Senthil Kumaran added the comment:
New changeset a2f0654b0a5b4c4f726155620002cc1f5f2d206a by Ken Jin in branch
'master':
bpo-42967: Fix urllib.parse docs and make logic clearer (GH-24536)
https://github.com/python/cpython/commit/a2f0654b0a5b4c4f726155620002cc
Senthil Kumaran added the comment:
New changeset c9f07813ab8e664d8c34413c4fc2d4f86c061a92 by Senthil Kumaran in
branch '3.9':
[3.9] bpo-42967: only use '&' as a query string separator (GH-24297) (#24528)
https://github.com/python/cpython/commit/c9f07813ab8e664d
Senthil Kumaran added the comment:
This is resolved in all version of Python now.
Thank you all for your contributions!
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
title: [security] urllib.parse.parse_qsl(): Web cache poisoning - `; ` as
Senthil Kumaran added the comment:
Alex, https://bugs.python.org/issue23740 is identified as a dependency on this
issue. We will have to resolve that first, and come back to this. And yes, if
you contribute on other's patch, both the contributions will be included and
appropriately cre
Senthil Kumaran added the comment:
Yes, the point number 5. We will have to evaluate if sendfile side-steps and
avoids the issues noted in issue23740
--
___
Python tracker
<https://bugs.python.org/issue13
Change by Senthil Kumaran :
--
versions: -Python 3.6, Python 3.7
___
Python tracker
<https://bugs.python.org/issue42782>
___
___
Python-bugs-list mailin
Change by Senthil Kumaran :
--
assignee: -> orsenthil
nosy: +orsenthil
___
Python tracker
<https://bugs.python.org/issue42782>
___
___
Python-bugs-list mai
Senthil Kumaran added the comment:
New changeset 132131b404e06ee1a19b040a1f96cd1118abed0c by Winson Luk in branch
'master':
bpo-42782: Fail fast for permission errors in shutil.move() (GH-24001)
https://github.com/python/cpython/commit/132131b404e06ee1a19b040a1f96cd
Senthil Kumaran added the comment:
New changeset 3a87e562ea21a5083e9f168e02e8ec3e6611e167 by Nathan Beals in
branch 'master':
bpo-42994: Add MIME types for opus, AAC, 3gpp and 3gpp2 (#24287)
https://github.com/python/cpython/commit/3a87e562ea21a5083e9f168e02e8ec3e6611e167
-
Senthil Kumaran added the comment:
Thanks for the this contribution, Nathan.
--
assignee: -> orsenthil
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python
Change by Senthil Kumaran :
--
assignee: -> nascheme
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
versions: +Python 3.10, Python 3.9
___
Python tracker
<https://bugs.python
Change by Senthil Kumaran :
--
keywords: +easy (C)
___
Python tracker
<https://bugs.python.org/issue43075>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Senthil Kumaran :
--
pull_requests: +23498
pull_request: https://github.com/python/cpython/pull/24725
___
Python tracker
<https://bugs.python.org/issue42
Senthil Kumaran added the comment:
New changeset bf566847f5a97e6ce391f8fb94185ee756cb94a2 by Senthil Kumaran in
branch '3.9':
[3.9] bpo-42782: Fail fast for permission errors in shutil.move() (GH-24001)
(#24725)
https://github.com/python/cpyt
Change by Senthil Kumaran :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
701 - 800 of 1788 matches
Mail list logo