Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
gh-64490: Fix bugs in argument clinic varargs processing#32092
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Python allows at most *one* vararg in one function.Remove the improper varargs check which allows function definition like``` *vararg1: object *vararg2: object```in argument clinic.
Variable `vararg` indicates the index of vararg in parameter list.While copying kwargs to `buf`, the index `i` should not add `vararg`, which leads to an out-of-bound bug.When there are positional args, vararg and keyword args in a function definition, in which case `vararg` > 1, this bug can be triggered.e.g.``` pos: object *args: object kw: object```
The calculation of noptargs is incorrect when there is a vararg.This bug prevents parsed arguments passing to XXXX_impl function.e.g.Define function``` *args: object kw: object```and pass kw=1 to the function, the `kw` parameter won't receive the pass in value.
Uh oh!
There was an error while loading.Please reload this page.
Could you also add a NEWS entry? |
bedevere-bot commentedAug 11, 2022
Most changes to Pythonrequire a NEWS entry. Please add it using theblurb_it web app or theblurb command-line tool. |
Thanks; still missing the NEWS entry, though. |
NEWS added :) |
Thanks; that's some entry! :) Could you narrow it down to a couple of concise sentences that describe the actual changes only? |
Also, could you please add tests for each case? |
# Conflicts:#Lib/test/clinic.test
Do you mean put the test cases into test_linic.py? To see if the OOB bug is fixed in commit6203962 , I should write some code snippet calling function I'm not sure how can I do this without touching the Python vm or library, As for commit6793f38, I'm looking at test_linic.py and will have a try later. |
Sincegh-96178 has recently been merged, we finally have a test framework for functional clinic tests, so I'd say this PR should add some tests before we are ready to land. |
I added some test cases and did another change ina48971d, so this PR may be necessary to be reviewed again.@erlend-aasland@isidentical@kumaraditya303 |
Another change ine6a4e13: |
6087c2e
toc3d6b73
CompareThere 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.
LGTM, thanks! Kumar, Batuhan, do you have further remarks?
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.
LGTM
@colorfulappl, please fix the merge conflicts |
# Conflicts:#Lib/test/test_clinic.py#Modules/_testclinic.c#Modules/clinic/_testclinic.c.h
Thanks@colorfulappl for the PR, and@erlend-aasland for merging it 🌮🎉.. I'm working now to backport this PR to: 3.10, 3.11. |
Sorry,@colorfulappl and@erlend-aasland, I could not cleanly backport this to |
Sorry@colorfulappl and@erlend-aasland, I had trouble checking out the |
@kumaraditya303 I'm inclined to backport the functional tests for AC to 3.11 and 3.10. What do you think? We've backported tests to increase coverage in the maintained branches before; it would help backporting the AC fixes (and by the way, we should backport the AC bug fixes that we landed earlier today) |
…pythonGH-32092)(cherry picked from commit0da7283)
bedevere-bot commentedDec 20, 2022
GH-100368 is a backport of this pull request to the3.11 branch. |
I have backported this to 3.11 (#100368). |
It is too later for 3.10. |
Uh oh!
There was an error while loading.Please reload this page.
Fix 3 bugs introduced in#18609.
Bug reason lists in each commit's commit message.
https://bugs.python.org/issue20291