almost complete in-place implementation of Python's ParseTupleAndKeywords()
authorStefan Behnel <scoder@users.berlios.de>
Fri, 22 Aug 2008 07:12:17 +0000 (09:12 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 22 Aug 2008 07:12:17 +0000 (09:12 +0200)
commit086f409864ee0cc14c87ff9175f00695ac69315a
tree3869a9f800d48dbccdd9dc78dd2247502c16c1c9
parent5091aefd9c5f356b0f317dfcf37239b5bfdad5b6
almost complete in-place implementation of Python's ParseTupleAndKeywords()
use argument exception messages from Python 2.6
TODO: handling of keyword-only arguments seems to require more work
TODO: clean up helper functions (currently somewhat redundant)
Cython/Compiler/Nodes.py
tests/errors/callargs.pyx [new file with mode: 0644]
tests/run/callargs.pyx [new file with mode: 0644]
tests/run/classkwonlyargs.pyx
tests/run/extkwonlyargs.pyx
tests/run/extstarargs.pyx
tests/run/kwonlyargs.pyx
tests/run/kwonlyargscall.pyx
tests/run/starargs.pyx