PEP 205, 611: Fix word duplications and grammar (#2646)

This commit is contained in:
Serhiy Storchaka 2022-06-12 11:40:32 +03:00 committed by GitHub
parent ee8a9453b8
commit b18e3f10f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -335,7 +335,7 @@ handle on an object that does not increment the object's reference
count. This means that holding a vref on an object will not keep
the object from being destroyed. This would allow the Python
programmer, for example, to create the aforementioned tree
structure tree structure, which is automatically destroyed when it
structure, which is automatically destroyed when it
is no longer in use -- by making all of the parent back-references
into vrefs, they no longer create reference cycles which keep the
tree from being destroyed.

View File

@ -38,7 +38,7 @@ It is unsafe as malicious or poorly generated code could cause values to exceed
For example, line numbers are represented by 32 bit values internally.
This is inefficient, given that modules almost never exceed a few thousand lines.
Despite being inefficient, is still vulnerable to overflow as
Despite being inefficient, it is still vulnerable to overflow as
it is easy for an attacker to created a module with billions of newline characters.
Memory access is usually a limiting factor in the performance of modern CPUs.