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.

classification
Title: Some C OrderedDict methods need to support keyword arguments.
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: eric.snow Nosy List: eric.snow, larry, ned.deily, python-dev
Priority: release blocker Keywords: patch

Created on 2015-06-03 00:02 by eric.snow, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue24368-kwargs.diff eric.snow, 2015-06-03 00:08 review
Messages (3)
msg244716 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2015-06-03 00:02
Several methods were implemented using PyArg_UnpackTuple and need to use PyArg_ParseTupleAndKeywords instead.
msg244717 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2015-06-03 00:08
Here's a patch with tests.
msg244726 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-06-03 02:44
New changeset 38ffea158630 by Eric Snow in branch '3.5':
Issue #24368: Support keyword arguments in OrderedDict methods.
https://hg.python.org/cpython/rev/38ffea158630
History
Date User Action Args
2022-04-11 14:58:17adminsetnosy: + larry, ned.deily
github: 68556
2015-06-06 15:38:26eric.snowlinkissue24394 superseder
2015-06-03 02:44:24eric.snowsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2015-06-03 02:44:04python-devsetnosy: + python-dev
messages: + msg244726
2015-06-03 00:08:59eric.snowsetfiles: + issue24368-kwargs.diff
keywords: + patch
messages: + msg244717

stage: needs patch -> patch review
2015-06-03 00:02:41eric.snowcreate