Merged changes from HEAD to RC_1_34_0.

[SVN r34898]
This commit is contained in:
Daniel Wallin
2006-08-16 22:30:07 +00:00
parent 6729c38504
commit 1f8f44b26c
3 changed files with 262 additions and 14 deletions

View File

@@ -1,6 +1,8 @@
'''
>>> from python_parameter import X
>>> x = X()
>>> x = X(y = 'baz')
>>> x.value
'foobaz'
>>> x.f(1,2)
3
>>> x.f(1,2,3)
@@ -17,6 +19,10 @@
'bazbar'
>>> x.g(y = "foo", x = "bar")
'barfoo'
>>> y = x.h(x = "bar", y = "foo")
>>> assert x == y
>>> y = x(0)
>>> assert x == y
'''
def run(args = None):