Sign in
fuchsia
/
third_party
/
mako
/
48b04e6af840315cd593a061d6de303fb84c6784
/
.
/
test
/
sample_module_namespace.py
blob: 7a2425d80186dc70db41119df96c844a8c0f5a2e [
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
''