Sign in
chromium
/
chromium
/
src
/
5ddd065e277b5cee7a88f23510eb537280cb26e5
/
.
/
third_party
/
mako
/
test
/
sample_module_namespace.py
blob: 886e8dd059856838baacb031571ce56fe78b302d [
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
""