Sign in
android
/
platform
/
external
/
python
/
mako
/
09cf4f68a7f7f63c2f249d61d7cc6600afe12c1a
/
.
/
test
/
foo
/
test_ns.py
blob: f67e22e5adcf00d2726b93500182e11895cc317e [
file
] [
log
] [
blame
]
def
foo1
(
context
):
context
.
write
(
"this is foo1."
)
return
""
def
foo2
(
context
,
x
):
context
.
write
(
"this is foo2, x is "
+
x
)
return
""
foo3
=
"I'm not a callable"