File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ Miscellaneous options
262262
263263 This is intended to provide protection against a denial-of-service caused by
264264 carefully-chosen inputs that exploit the worst case performance of a dict
265- insertion , O(n^2) complexity. See
265+ construction , O(n^2) complexity. See
266266 http://www.ocert.org/advisories/ocert-2011-003.html for details.
267267
268268 Changing hash values affects the order in which keys are retrieved from a
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ not predictable between repeated invocations of Python.
162162.IP
163163This is intended to provide protection against a denial of service
164164caused by carefully-chosen inputs that exploit the worst case performance
165- of a dict insertion , O(n^2) complexity. See
165+ of a dict construction , O(n^2) complexity. See
166166http://www.ocert.org/advisories/ocert-2011-003.html
167167for details.
168168.TP
Original file line number Diff line number Diff line change @@ -106,9 +106,9 @@ PYTHONCASEOK : ignore case in 'import' statements (Windows).\n\
106106PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n\
107107" ;
108108static char * usage_6 = "\
109- PYTHONHASHSEED: if this variable is set to `` random`` , the effect is the same \n\
110- as specifying the :option:`-R` option: a random value is used to seed the\n\
111- hashes of str, bytes and datetime objects. It can also be set to an integer\n\
109+ PYTHONHASHSEED: if this variable is set to ' random' , the effect is the same\n\
110+ as specifying the -R option: a random value is used to seed the hashes of \n\
111+ str, bytes and datetime objects. It can also be set to an integer\n\
112112 in the range [0,4294967295] to get hash values with a predictable seed.\n\
113113" ;
114114
You can’t perform that action at this time.
0 commit comments