On 3/14/19 2:39 AM, Lothar Schilling wrote:
>  Am 12.03.2019 um 23:47 schrieb Mark Sapiro:
>>
>> What is the path to the Python interpreter that Mailman is using?
> 
> /usr/bin/python
> /usr/bin/python -V: Python 2.6.6


What is the python command in the result of

ps -fwwA|grep ArchRunner


>> What do you get if in that Python you do
>>
>> import string
>> lowercase

As noted in other replies, this should have been 'string.lowercase'.


>> string
...
> string
> <module 'string' from '/usr/lib64/python2.6/string.pyc'>


Get the python command from the 'ps' result above. run that full path
and then do

>>> import string
>>> string.lowercase
>>> string

I am expecting (hoping actually because it's the only explanation I can
see) that the result of 'string.lowercase' will be longer than 26
characters and will contain non-ascii. Then the result of 'string' will
point to the string.py(c) that this comes from.

-- 
Mark Sapiro <m...@msapiro.net>        The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan
------------------------------------------------------
Mailman-Users mailing list Mailman-Users@python.org
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Reply via email to