File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ Miscellaneous options
224224
225225 This is intended to provide protection against a denial-of-service caused by
226226 carefully-chosen inputs that exploit the worst case performance of a dict
227- insertion , O(n^2) complexity. See
227+ construction , O(n^2) complexity. See
228228 http://www.ocert.org/advisories/ocert-2011-003.html for details.
229229
230230 Changing hash values affects the order in which keys are retrieved from a
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ not predictable between repeated invocations of Python.
156156.IP
157157This is intended to provide protection against a denial of service
158158caused by carefully-chosen inputs that exploit the worst case performance
159- of a dict insertion , O(n^2) complexity. See
159+ of a dict construction , O(n^2) complexity. See
160160http://www.ocert.org/advisories/ocert-2011-003.html
161161for details.
162162.TP
Original file line number Diff line number Diff line change @@ -103,9 +103,9 @@ PYTHONCASEOK : ignore case in 'import' statements (Windows).\n\
103103PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n\
104104" ;
105105static char * usage_6 = "\
106- PYTHONHASHSEED: if this variable is set to `` random`` , the effect is the same \n\
107- as specifying the :option:`-R` option: a random value is used to seed the\n\
108- hashes of str, bytes and datetime objects. It can also be set to an integer\n\
106+ PYTHONHASHSEED: if this variable is set to ' random' , the effect is the same\n\
107+ as specifying the -R option: a random value is used to seed the hashes of \n\
108+ str, bytes and datetime objects. It can also be set to an integer\n\
109109 in the range [0,4294967295] to get hash values with a predictable seed.\n\
110110" ;
111111
You can’t perform that action at this time.
0 commit comments