[issue24368] Some C OrderedDict methods need to support keyword arguments.

2015-06-02 Thread Eric Snow
Eric Snow added the comment: Here's a patch with tests. -- keywords: +patch stage: needs patch - patch review Added file: http://bugs.python.org/file39601/issue24368-kwargs.diff ___ Python tracker rep...@bugs.python.org

[issue24368] Some C OrderedDict methods need to support keyword arguments.

2015-06-02 Thread Eric Snow
New submission from Eric Snow: Several methods were implemented using PyArg_UnpackTuple and need to use PyArg_ParseTupleAndKeywords instead. -- assignee: eric.snow components: Library (Lib) messages: 244716 nosy: eric.snow priority: release blocker severity: normal stage: needs patch

[issue24368] Some C OrderedDict methods need to support keyword arguments.

2015-06-02 Thread Roundup Robot
Roundup Robot added the comment: 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 -- nosy: +python-dev ___ Python tracker

[issue24368] Some C OrderedDict methods need to support keyword arguments.

2015-06-02 Thread Eric Snow
Changes by Eric Snow ericsnowcurren...@gmail.com: -- resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24368 ___