diff options
author | Christian Clauss <cclauss@me.com> | 2025-02-18 13:24:11 +0100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-02-25 16:11:33 +1100 |
commit | 5e206fdeb5225ce24efb9411cc879bafaa04b86f (patch) | |
tree | a7f26a550a7fa45ecc804108fad216f1004acec3 /docs/reference/speed_python.rst | |
parent | 8b1ed4473dd215d564498f577cb6f3339c3c2e57 (diff) |
all: Upgrade codespell to v2.4.1.
This commit upgrades from codespell==2.2.6 to the current codespell==2.4.1,
adding emac to the ignore-words-list.
Signed-off-by: Christian Clauss <cclauss@me.com>
Diffstat (limited to 'docs/reference/speed_python.rst')
-rw-r--r-- | docs/reference/speed_python.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/speed_python.rst b/docs/reference/speed_python.rst index a660432f6..64fd9df6c 100644 --- a/docs/reference/speed_python.rst +++ b/docs/reference/speed_python.rst @@ -219,7 +219,7 @@ process known as garbage collection reclaims the memory used by these redundant objects and the allocation is then tried again - a process which can take several milliseconds. -There may be benefits in pre-empting this by periodically issuing `gc.collect()`. +There may be benefits in preempting this by periodically issuing `gc.collect()`. Firstly doing a collection before it is actually required is quicker - typically on the order of 1ms if done frequently. Secondly you can determine the point in code where this time is used rather than have a longer delay occur at random points, |