[Python-checkins] cpython (2.7): use imperative
benjamin.peterson
python-checkins at python.org
Sat Apr 11 13:44:52 CEST 2015
https://hg.python.org/cpython/rev/c7a6a11a5013
changeset: 95538:c7a6a11a5013
branch: 2.7
parent: 95536:89d47911209b
user: Benjamin Peterson <benjamin at python.org>
date: Sat Apr 11 07:42:42 2015 -0400
summary:
use imperative
files:
Doc/library/ssl.rst | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -286,10 +286,10 @@
.. function:: RAND_status()
- Returns ``True`` if the SSL pseudo-random number generator has been seeded with
- 'enough' randomness, and ``False`` otherwise. You can use :func:`ssl.RAND_egd`
- and :func:`ssl.RAND_add` to increase the randomness of the pseudo-random
- number generator.
+ Return ``True`` if the SSL pseudo-random number generator has been seeded
+ with 'enough' randomness, and ``False`` otherwise. You can use
+ :func:`ssl.RAND_egd` and :func:`ssl.RAND_add` to increase the randomness of
+ the pseudo-random number generator.
.. function:: RAND_egd(path)
@@ -306,7 +306,7 @@
.. function:: RAND_add(bytes, entropy)
- Mixes the given *bytes* into the SSL pseudo-random number generator. The
+ Mix the given *bytes* into the SSL pseudo-random number generator. The
parameter *entropy* (a float) is a lower bound on the entropy contained in
string (so you can always use :const:`0.0`). See :rfc:`1750` for more
information on sources of entropy.
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list