Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
275104e8
Commit
275104e8
authored
Mar 02, 2017
by
Alex Gaynor
Committed by
Victor Stinner
Mar 02, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
In SSL module version examples, don't use a legacy version. (#381)
parent
2b221b78
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Doc/library/ssl.rst
Doc/library/ssl.rst
+4
-4
No files found.
Doc/library/ssl.rst
View file @
275104e8
...
...
@@ -846,7 +846,7 @@ Constants
The version string of the OpenSSL library loaded by the interpreter::
>>> ssl.OPENSSL_VERSION
'OpenSSL
0.9.8k 25 Mar 2009
'
'OpenSSL
1.0.2k 26 Jan 2017
'
.. versionadded:: 3.2
...
...
@@ -856,7 +856,7 @@ Constants
OpenSSL library::
>>> ssl.OPENSSL_VERSION_INFO
(
0, 9, 8
, 11, 15)
(
1, 0, 2
, 11, 15)
.. versionadded:: 3.2
...
...
@@ -865,9 +865,9 @@ Constants
The raw version number of the OpenSSL library, as a single integer::
>>> ssl.OPENSSL_VERSION_NUMBER
9470143
268443839
>>> hex(ssl.OPENSSL_VERSION_NUMBER)
'0x
908
0bf'
'0x
10002
0bf'
.. versionadded:: 3.2
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment