[issue35941] ssl.enum_certificates() regression

2019-03-21 Thread nr
nr added the comment: To be honest, I think the patch is worth to be merged including other patches I submitted. Yet I believed it was better to close the pull request because I put quite some time into researching and programming the solutions but nobody really cared so I stopped. All I

[issue5038] urrlib2/httplib doesn't reset file position between requests

2019-02-17 Thread nr
nr added the comment: I will fix the build errors first. -- ___ Python tracker <https://bugs.python.org/issue5038> ___ ___ Python-bugs-list mailing list Unsub

[issue5038] urrlib2/httplib doesn't reset file position between requests

2019-02-17 Thread nr
nr added the comment: I added a new pull request. Martin, you are right I realized when looking through the code that just setting the file pointer to zero inside http lib might interfere with requests that don't have authentication enabled. The new pull requests does number 2.) of your

[issue5038] urrlib2/httplib doesn't reset file position between requests

2019-02-16 Thread nr
Change by nr : -- pull_requests: +11930 ___ Python tracker <https://bugs.python.org/issue5038> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20116] urlparse.parse_qs should take argument for query separator

2019-02-17 Thread nr
nr added the comment: W3C allows both constructs, ampersand and semicolon. https://www.w3.org/TR/html401/appendix/notes.html#h-B.2.2 Especially servlet containers and servers running CGI programs often use semicolons as a separator. I would say to parse either ampersands OR semicolons

[issue5038] urrlib2/httplib doesn't reset file position between requests

2019-02-17 Thread nr
nr added the comment: the pull request now passed the build checks, please review the code. -- ___ Python tracker <https://bugs.python.org/issue5038> ___ ___

[issue35941] ssl.enum_certificates() regression

2019-02-18 Thread nr
Change by nr : -- keywords: +patch pull_requests: +11948 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35941> ___ ___ Python-

[issue5038] urrlib2/httplib doesn't reset file position between requests

2019-02-15 Thread nr
nr added the comment: PR 11843 should fix the issue in master, I didn't check python 2.6 or prior versions. The problem is that in the first request sent to HTTP service the POST data is sent correctly. After that the HTTP server responds with 401 and the request is resent but the mmap file

[issue35928] socket makefile read-write discards received data

2019-02-15 Thread nr
Change by nr : -- keywords: +patch pull_requests: +11912 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issue35928> ___ ___ Py

[issue35928] socket makefile read-write discards received data

2019-02-15 Thread nr
nr added the comment: Added PR 11878, this will pass both this bug report and PR 3918 regression, the commit Ammar noted, it is an addition to this change. -- nosy: +nr ___ Python tracker <https://bugs.python.org/issue35

[issue35941] ssl.enum_certificates() regression

2019-02-19 Thread nr
nr added the comment: Adjusted the code to conform with PEP 7. -- ___ Python tracker <https://bugs.python.org/issue35941> ___ ___ Python-bugs-list mailin