File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ Miscellaneous options
224
224
225
225
This is intended to provide protection against a denial-of-service caused by
226
226
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
228
228
http://www.ocert.org/advisories/ocert-2011-003.html for details.
229
229
230
230
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.
156
156
.IP
157
157
This is intended to provide protection against a denial of service
158
158
caused 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
160
160
http://www.ocert.org/advisories/ocert-2011-003.html
161
161
for details.
162
162
.TP
Original file line number Diff line number Diff line change @@ -103,9 +103,9 @@ PYTHONCASEOK : ignore case in 'import' statements (Windows).\n\
103
103
PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n\
104
104
" ;
105
105
static 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\
109
109
in the range [0,4294967295] to get hash values with a predictable seed.\n\
110
110
" ;
111
111
You can’t perform that action at this time.
0 commit comments