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

View File

@@ -0,0 +1,6 @@
class A:
def foo(self, a):
pass
a = A()
a.foo(<arg1>1)