On Nov 30, 2013, at 08:37 PM, nicolas wrote:
I think we have to qualify a better report before sending to mailman team, i'm using r7229 of lp:mailman, and i wrote this simple mlist.py module : #-*- coding: utf-8 -*-
^^^ This isn't enough to make it work. MM3 core is written in a dialect that tries to be as close to Python 3 as possible[*]. You should put the following at the top of your module:
from __future__ import absolute_import, print_function, unicode_literals
It's possible there are some corner cases when using this as a withlist script. If so, please submit a bug report!
Cheers, -Barry