8000 Update `uu.py` and `test_uu.py` from CPython v3.12.0 by kingiler · Pull Request #5161 · RustPython/RustPython · GitHub
[go: up one dir, main page]

Skip to content

Update uu.py and test_uu.py from CPython v3.12.0 #5161

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

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
fix some typos (#5187)
Signed-off-by: wellweek <xiezitai@outlook.com>
  • Loading branch information
wellweek authored and kingiler committed Mar 15, 2024
commit 2b29b1248006596dd0d105d72120b1358fc31fbb
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)
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:
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
0