[issue40127] Documentation of SSL library

2020-04-02 Thread Christophe Nanteuil
Christophe Nanteuil added the comment: I modified the PR according to the source code: "if all three are None and SSLContext.verify_mode is not set to CERT_NONE, this function uses the system's default CA certificates." The way the system is configured may depend on multiple

[issue40127] Documentation of SSL library

2020-03-31 Thread Christophe Nanteuil
Christophe Nanteuil added the comment: Thanks for clarifying the choice. I understand that we could state : " if cafile ... are None, the function falls back to user/system configuration (which is beyond this documentation)." -- ___ Pyth

[issue40127] Documentation of SSL library

2020-03-31 Thread Christophe Nanteuil
Change by Christophe Nanteuil : -- keywords: +patch pull_requests: +18611 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19253 ___ Python tracker <https://bugs.python.org/issu

[issue40127] Documentation of SSL library

2020-03-31 Thread Christophe Nanteuil
Change by Christophe Nanteuil : -- type: -> enhancement ___ Python tracker <https://bugs.python.org/issue40127> ___ ___ Python-bugs-list mailing list Un

[issue40127] Documentation of SSL library

2020-03-31 Thread Christophe Nanteuil
New submission from Christophe Nanteuil : For the ssl.create_default_context() function, it states that, "if cafile, capath and cadata are None, the function *can* choose to trust the system's default CA certificates instead". This statement is not clear as, if the values are

[issue34158] Documentation of datetime '%z' format code is odd

2018-07-24 Thread Christophe Nanteuil
Christophe Nanteuil added the comment: PR updated according to Martin Panter comments. -- ___ Python tracker <https://bugs.python.org/issue34158> ___ ___ Pytho

[issue34158] Documentation of datetime '%z' format code is odd

2018-07-19 Thread Christophe Nanteuil
New submission from Christophe Nanteuil : In § 8.1.8. "strftime() and strptime() Behavior", the documentation states that "%z" format code is a string of the form '±HHMM[SS[.uu]]' where uu is a 2-digit string giving the number of UTC offset microseconds.