mako
mako copied to clipboard
Mako Templates for Python
Hello, I am using mako to create a generator of files (.c, .h, ...). While implementing the templates, I faced the error: `SyntaxException: Expected: \|,} at line: 3680 char: 2.`...
With the following code preceded by 10 empty lines: ``` ``` I get ``` :1: SyntaxWarning: invalid escape sequence '\j' memory:0x18bf4657080:36: SyntaxWarning: invalid escape sequence '\j' ``` "1" is ok...
Ref: https://peps.python.org/pep-0518/#sticking-with-setup-cfg Fix: https://github.com/sqlalchemy/mako/issues/420 Migrating the static matadata to project.toml will also help us to use some modern package managers such as: poetry、uv、pdm.
Fixes: https://github.com/sqlalchemy/mako/issues/140 and https://github.com/sqlalchemy/mako/issues/415 During the lexical analysis phase, add an additional prefix for undeclared identifiers that have the same name as built-in flags, and determine the final filter to...
Warning whilst building https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license ``` Executing (host): python3 -m build -n -w -x * Building wheel... /var/media/DATA/home-rudi/LibreELEC.tv/build.LibreELEC-Generic.x86_64-13.0-devel/toolchain/lib/python3.13/site-packages/setuptools/ dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following...
I don't see any documentation regarding asynchronous behavior in the mako documentation. I would guess that the compilation of templates to python code would have a lot of blocking calls,...