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
Fix non-matching bracket pairs #28473
Conversation
I checked all changes and believe they are correct except as noted.
Test failure in regenerated file check, line 1040:
# Updating PCbuild/_freeze_module.vcxproj.filters
The Makefile was updated, you may need to re-run make.
Error in file "./Modules/arraymodule.c" on line 3125:
Checksum mismatch!
Expected: 376001addedc67ee
Computed: f130a994f98f1227
Suggested fix: remove all generated code including the end marker,
or use the '-f' option.
Does anyone else know more about this?
There was also a failure in the Pipelines test, which I cannot see since tests have been restarted. Likely the same issue, but will see after tests rerun.
Misc/NEWS.d/next/Build/2021-09-09-16-45-26.bpo-45067.mFmY92.rst
Outdated
Show resolved
Hide resolved
Misc/NEWS.d/next/Build/2021-09-09-16-45-26.bpo-45067.mFmY92.rst
Outdated
Show resolved
Hide resolved
@@ -730,7 +730,7 @@ def join_alphabet_list_five(STR): | |||
for x in _RANGE_1000: | |||
sep_join(s2) | |||
|
|||
@bench('"A".join(["Bob"]*100))', | |||
@bench('"A".join(["Bob"]*100)', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line 742 below needs the same correction.
I considered whether the 'mistake' might be intentional and checked the definition of bench. The first argument is attached to the function f as f.comment. So the error has no possible functional use and should be corrected.
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
You should make PRs from PR branches derived from main. See the devguide, That will allow you to work on more than one independent change at a time. |
@zooba Do you know what is going on with Azure Pipelines? 'Details' leads to |
Doc/library/pathlib.rst
Outdated
@@ -552,7 +552,7 @@ Pure paths provide the following methods and properties: | |||
Traceback (most recent call last): | |||
File "<stdin>", line 1, in <module> | |||
File "pathlib.py", line 694, in relative_to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The line # is obsolete. Could change. In 3.10/11
File "pathlib.py", line 694, in relative_to | |
File "pathlib.py", line 818, in relative_to |
was 941 in 3.9 but not worth the bother to change in backport.
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Thanks @mohamadmansourX for the PR, and @ambv for merging it |
Sorry @mohamadmansourX and @ambv, I had trouble checking out the |
Sorry, @mohamadmansourX and @ambv, I could not cleanly backport this to |
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 8f943ca) Co-authored-by: Mohamad Mansour <66031317+mohamadmansourX@users.noreply.github.com>
GH-28511 is a backport of this pull request to the 3.10 branch. |
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 8f943ca) Co-authored-by: Mohamad Mansour <66031317+mohamadmansourX@users.noreply.github.com>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl>. (cherry picked from commit 8f943ca) Co-authored-by: Mohamad Mansour <66031317+mohamadmansourX@users.noreply.github.com>
GH-28512 is a backport of this pull request to the 3.9 branch. |
|
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl>. (cherry picked from commit 8f943ca) Co-authored-by: Mohamad Mansour <66031317+mohamadmansourX@users.noreply.github.com>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 8f943ca) Co-authored-by: Mohamad Mansour <66031317+mohamadmansourX@users.noreply.github.com>
'Doc text' includes doc files, comments, and docstrings.