[issue10638] PyArg_ParseTuple: refcount in nested tuples

2010-12-06 Thread Armin Rigo
Armin Rigo added the comment: Indeed. -- resolution: -> duplicate status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue10638] PyArg_ParseTuple: refcount in nested tuples

2010-12-06 Thread Georg Brandl
Georg Brandl added the comment: Duplicate of #6083? -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue10638] PyArg_ParseTuple: refcount in nested tuples

2010-12-06 Thread Armin Rigo
New submission from Armin Rigo : There is an issue in PyArg_ParseTuple() when using nested tuple arguments: it accepts a pure Python tuple-like argument, but it cannot work properly because PyArg_ParseTuple() is supposed to return borrowed references to the objects. For example, here is an at