Skip to content

fix some typos #5187

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Lib/test/test_unpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def test_extended_oparg_not_ignored(self):
ns = {}
exec(code, ns)
unpack_400 = ns["unpack_400"]
# Warm up the the function for quickening (PEP 659)
# Warm up the function for quickening (PEP 659)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file is originated from CPython repository. Updating this file from CPython repository is preferred.
The file is fixed in CPython repository.

See also #5104

for _ in range(30):
y = unpack_400(range(400))
self.assertEqual(y, 399)
Expand Down
2 changes: 1 addition & 1 deletion architecture/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Part of the Python standard library that's implemented in Rust. The modules that

### Lib

Python side of the standard libary, copied over (with care) from CPython sourcecode.
Python side of the standard library, copied over (with care) from CPython sourcecode.

#### Lib/test

Expand Down
2 changes: 1 addition & 1 deletion benches/benchmarks/pystone.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

Version History:

Inofficial version 1.1.1 by Chris Arndt:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unofficial version 1.1.1 by Chris Arndt:

- Make it run under Python 2 and 3 by using
"from __future__ import print_function".
Expand Down