diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-08-09 18:32:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-09 18:32:54 (GMT) |
commit | 058fb35b57ca8c5063d16ec818e668b3babfea65 (patch) | |
tree | 7c476bb7c59e65a9e8c83ca633068be3f14a1975 /Python | |
parent | 7d14fdb03c3e8384c01da1b21647ce837ed6a29c (diff) | |
download | cpython-058fb35b57ca8c5063d16ec818e668b3babfea65.zip cpython-058fb35b57ca8c5063d16ec818e668b3babfea65.tar.gz cpython-058fb35b57ca8c5063d16ec818e668b3babfea65.tar.bz2 |
bpo-44854: Remove trailing whitespaces (GH-27689)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/adaptive.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/adaptive.md b/Python/adaptive.md index 66b80a1..81880ce 100644 --- a/Python/adaptive.md +++ b/Python/adaptive.md @@ -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. |