Summary
Shortlog
Changelog
Graph
Tags
Bookmarks
Branches
Files
Help
Search
simplify
tests/function.py
23:929af7341cec
18:af353c35b70b
14:7c40ee4eea88
2006-07-17
paulb
raw
annotate
files
changeset
graph
Made function subprogram names originate from the AST nodes which defined them. Introduced proper class definition subprograms, along with separate structure nodes.
1
def
f
(
a
,
b
,
c
=
2
,
*
d
,
**
e
):
2
return
g
(
a
,
b
,
c
=
2
,
*
d
,
**
e
)