bpo-44854: Remove trailing whitespaces (GH-27689)

This commit is contained in:
Serhiy Storchaka 2021-08-09 21:32:54 +03:00 committed by GitHub
parent 7d14fdb03c
commit 058fb35b57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 15 additions and 15 deletions

View file

@ -12,7 +12,7 @@ A family of instructions has the following fundamental properties:
* It has a single adaptive instruction that records an execution count and,
at regular intervals, attempts to specialize itself. If not specializing,
it executes the non-adaptive instruction.
* It has at least one specialized form of the instruction that is tailored
* It has at least one specialized form of the instruction that is tailored
for a particular value or set of values at runtime.
* All members of the family have access to the same number of cache entries.
Individual family members do not need to use all of the entries.
@ -80,7 +80,7 @@ requiring judgement and experimentation to design the family of instructions.
Before choosing how to specialize an instruction, it is important to gather
some data. What are the patterns of usage of the base instruction?
Data can best be gathered by instrumenting the interpreter. Since a
Data can best be gathered by instrumenting the interpreter. Since a
specialization function and adaptive instruction are going to be required,
instrumentation can most easily be added in the specialization function.