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.

Author vstinner
Recipients Demur Rumed, abarry, python-dev, serhiy.storchaka, vstinner
Date 2016-12-05.17:07:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1480957630.67.0.740832743575.issue28050@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2016-12-05 17:07:10vstinnersetrecipients: + vstinner, python-dev, serhiy.storchaka, abarry, Demur Rumed
2016-12-05 17:07:10vstinnersetmessageid: <1480957630.67.0.740832743575.issue28050@psf.upfronthosting.co.za>
2016-12-05 17:07:10vstinnerlinkissue28050 messages
2016-12-05 17:07:10vstinnercreate