xxlimited_35 module now has the same name in repr in Py 3.11
See https://github.com/python/cpython/commit/a87c9b538fbfc42883417c4d5e69f1a5922690e3
This change has been introduced in Python 3.11 beta 4.
Also Python 3.10.6: https://github.com/python/cpython/pull/93679
thanks
@meeseeksdev backport to 7.x
Owee, I'm MrMeeseeks, Look at me.
There seem to be a conflict, please backport manually. Here are approximate instructions:
- Checkout backport branch and update it.
git checkout 7.x
git pull
- Cherry pick the first parent branch of the this PR on top of the older branch:
git cherry-pick -x -m1 b9c796a6a3a32f510c235041813ccb904888f14a
- You will likely have some merge/cherry-pick conflict here, fix them and commit:
git commit -am 'Backport PR #13714: xxlimited_35 module now has the same name in repr in Py 3.11'
- Push to a named branch:
git push YOURFORK 7.x:auto-backport-of-pr-13714-on-7.x
- Create a PR against branch 7.x, I would have named this PR:
"Backport PR #13714 on branch 7.x (xxlimited_35 module now has the same name in repr in Py 3.11)"
And apply the correct labels and milestones.
Congratulations — you did some good work! Hopefully your backport PR will be tested by the continuous integration and merged soon!
Remember to remove the Still Needs Manual Backport label once the PR gets merged.
If these instructions are inaccurate, feel free to suggest an improvement.