Adds a notion of a tuple parameter. Adapts paramater and argument inspections and Ctrl+P handler to use it. Adds tests for Ctrl+P handler.

Closes PY-200.
This commit is contained in:
Dmitry Cheryasov
2009-07-17 11:07:31 +04:00
parent 3fdb9d655c
commit 90ce4a132c
62 changed files with 1553 additions and 589 deletions
+5
View File
@@ -0,0 +1,5 @@
def foo(a, b, **c):
pass
foo(<arg1>1, <arg2>2, <arg3>x=3, <arg4>**{'y':4})