8000 Fix non-matching bracket pairs by mohamadmansourX · Pull Request #28473 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Fix non-matching bracket pairs #28473

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 13 commits into from
Sep 21, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update Lib/test/test_winreg.py
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
  • Loading branch information
mohamadmansourX and terryjreedy authored Sep 20, 2021
commit 3204e0c3d646bc0356a8a03a2169e4f8fe465c54
2 changes: 1 addition & 1 deletion Lib/test/test_winreg.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
("Raw Data", b"binary\x00data", REG_BINARY),
("Big String", "x"*(2**14-1), REG_SZ),
("Big Binary", b"x"*(2**14), REG_BINARY),
# Two and three kanjis, meaning: ("Japan" and "Japanese")
# Two and three kanjis, meaning: "Japan" and "Japanese".
("Japanese 日本", "日本語", REG_SZ),
]

Expand Down
0