Type tests and implementation for functions.

This commit is contained in:
Dave Halter
2015-07-01 14:54:23 +02:00
parent d1218c97bf
commit 3ac8f02841
3 changed files with 10 additions and 0 deletions

View File

@@ -57,6 +57,11 @@ type(x for x in [])
#? type(x)
type(lambda: x)
import math
import os
#? type(os)
type(math)
# -----------------
# re
# -----------------