summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/fun-defargs.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-02-01 17:51:47 +0000
committerDamien George <damien.p.george@gmail.com>2014-02-01 17:51:47 +0000
commit87413a4d0c579ec491cf52ab8d6520430df64c7d (patch)
treec19abcbf9275c5debd4436ed5146a4aab1ad4c7d /tests/basics/fun-defargs.py
parent382b3d00ed9a2f31dcedbf65ce82cbada9b6dbdf (diff)
parent90750029df8d7fd24600cc4fe4c98a5b80731f28 (diff)
downloadmicropython-87413a4d0c579ec491cf52ab8d6520430df64c7d.tar.gz
micropython-87413a4d0c579ec491cf52ab8d6520430df64c7d.zip
Merge branch 'fun-defargs' of github.com:pfalcon/micropython into pfalcon-fun-defargs
Diffstat (limited to 'tests/basics/fun-defargs.py')
-rw-r--r--tests/basics/fun-defargs.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/basics/fun-defargs.py b/tests/basics/fun-defargs.py
new file mode 100644
index 0000000000..0666b8c494
--- /dev/null
+++ b/tests/basics/fun-defargs.py
@@ -0,0 +1,20 @@
+def fun1(val=5):
+ print(5)
+
+fun1()
+fun1(10)
+
+def fun2(p1, p2=100, p3="foo"):
+ print(p1, p2, p3)
+
+fun2(1)
+fun2(1, None)
+fun2(0, "bar", 200)
+try:
+ fun2()
+except TypeError:
+ print("TypeError")
+try:
+ fun2(1, 2, 3, 4)
+except TypeError:
+ print("TypeError")