blob: cf1d46f7509e59aa7d7d7e89da6715fec3e84ee8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# test custom builtin module
try:
import cexample
except ImportError:
print("SKIP")
raise SystemExit
print(cexample)
d = dir(cexample)
d.index("add_ints")
print(cexample.add_ints(1, 3))
|