Make the SSL version more human-readable #7007
                
     Open
            
            
          
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
When executing
python -m requests.help, the previous format looked like:{ "chardet": { "version": null }, "charset_normalizer": { "version": "2.0.12" }, "cryptography": { "version": "40.0.2" }, "idna": { "version": "3.7" }, "implementation": { "name": "CPython", "version": "3.6.8" }, "platform": { "release": "3.10.0-1160.119.1.el7.x86_64", "system": "Linux" }, "pyOpenSSL": { "openssl_version": "30100000", "version": "23.2.0" }, "requests": { "version": "2.27.1" }, "system_ssl": { "version": "100020bf" }, "urllib3": { "version": "1.26.19" }, "using_charset_normalizer": true, "using_pyopenssl": true }The current format looks like:
{ "chardet": { "version": null }, "charset_normalizer": { "version": "2.0.12" }, "cryptography": { "version": "40.0.2" }, "idna": { "version": "3.7" }, "implementation": { "name": "CPython", "version": "3.6.8" }, "platform": { "release": "3.10.0-1160.119.1.el7.x86_64", "system": "Linux" }, "pyOpenSSL": { "openssl_version": "OpenSSL 3.1.0 14 Mar 2023", "version": "23.2.0" }, "requests": { "version": "2.27.1" }, "system_ssl": { "version": "OpenSSL 1.0.2k-fips 26 Jan 2017" }, "urllib3": { "version": "1.26.19" }, "using_charset_normalizer": true, "using_pyopenssl": true }