forked from ScoDoc/ScoDoc
27 lines
583 B
Python
Executable File
27 lines
583 B
Python
Executable File
# -*- mode: python -*-
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""essai: ceci serait un module scodoc/sco_xxx.py
|
|
"""
|
|
|
|
import types
|
|
|
|
import sco_utils as scu
|
|
|
|
|
|
def sco_get_version(context, REQUEST=None):
|
|
"""Une fonction typique de ScoDoc7"""
|
|
return """<html><body><p>%s</p></body></html>""" % scu.SCOVERSION
|
|
|
|
|
|
def test_refactor(context, x=1):
|
|
x = context.toto()
|
|
y = ("context=" + context.module_is_locked("alpha")) + "23"
|
|
z = context.sco_header(
|
|
a_long_argument_hahahahaha=1,
|
|
another_very_long_arggggggggggggg=2,
|
|
z=6,
|
|
u=99,
|
|
kkkkkk=1,
|
|
)
|