added an example on using fancier kinds of default arguments
diff --git a/example/example11.ref b/example/example11.ref
index dafa62c..7d75056 100644
--- a/example/example11.ref
+++ b/example/example11.ref
@@ -11,7 +11,12 @@
Help on built-in function kw_func3
kkww__ffuunncc33(...)
- Signature : (data : str = u'Hello world!') -> NoneType
+ Signature : (data : unicode = u'Hello world!') -> NoneType
+
+Help on built-in function kw_func4
+
+kkww__ffuunncc44(...)
+ Signature : (myList : list<int> = [13L, 17L]) -> NoneType
kw_func(x=5, y=10)
kw_func(x=5, y=10)
@@ -25,3 +30,5 @@
Caught expected exception: Incompatible function arguments. The following argument types are supported:
1. (x : int = 100L, y : int = 200L) -> NoneType
+kw_func4: 13 17
+kw_func4: 1 2 3