This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2016年09月09日 19:11 by vstinner, last changed 2022年04月11日 14:58 by admin. This issue is now closed.
| Messages (6) | |||
|---|---|---|---|
| msg275396 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2016年09月09日 19:11 | |
I skipped the failing tests just to be able to push my FASTCALL changes before Python 3.6 feature freeze. I opened this issue to not forget to fix it. |
|||
| msg275403 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2016年09月09日 19:28 | |
New changeset a77756e480c2 by Victor Stinner in branch 'default': Rework CALL_FUNCTION* opcodes https://hg.python.org/cpython/rev/a77756e480c2 |
|||
| msg275453 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2016年09月09日 21:37 | |
Serhiy proposed a fix in the issue #27213 (starting at callfunc-10.patch). |
|||
| msg282438 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2016年12月05日 17:07 | |
Oh, this issue was already fixed, thanks Serhiy :-) changeset: 103659:51b635e81958 user: Serhiy Storchaka <storchaka@gmail.com> date: Mon Sep 12 00:52:40 2016 +0300 files: Include/abstract.h Lib/dis.py Lib/test/test_extcall.py Lib/test/test_traceback.py Objects/abstract.c Objects/methodobject.c Python/ceval.c Python/compile.c Python/importlib.h Python/imp description: Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes. * BUILD_TUPLE_UNPACK and BUILD_MAP_UNPACK_WITH_CALL no longer generated with single tuple or dict. * Restored more informative error messages for incorrect var-positional and var-keyword arguments. * Removed code duplications in _PyEval_EvalCodeWithName(). * Removed redundant runtime checks and parameters in _PyStack_AsDict(). * Added a workaround and enabled previously disabled test in test_traceback. * Removed dead code from the dis module. |
|||
| msg282440 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) | Date: 2016年12月05日 17:19 | |
It is rather worked around. |
|||
| msg282441 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2016年12月05日 17:27 | |
Serhiy Storchaka added the comment: > It is rather worked around. The test pass, the change looks good to me. I don't think that it's still worth it to keep the issue open ;-) |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:58:36 | admin | set | github: 72237 |
| 2016年12月05日 17:27:41 | vstinner | set | messages: + msg282441 |
| 2016年12月05日 17:19:07 | serhiy.storchaka | set | messages: + msg282440 |
| 2016年12月05日 17:07:10 | vstinner | set | status: open -> closed resolution: fixed messages: + msg282438 |
| 2016年09月09日 21:37:26 | vstinner | set | messages: + msg275453 |
| 2016年09月09日 21:35:24 | abarry | set | nosy:
+ abarry |
| 2016年09月09日 19:28:41 | python-dev | set | nosy:
+ python-dev messages: + msg275403 |
| 2016年09月09日 19:11:31 | vstinner | create | |