This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Deprecated Module regsub
Type: Stage:
Components: None Versions:
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: barry Nosy List: barry, loewis, shakari
Priority: normal Keywords:

Created on 2001-06-10 11:06 by shakari, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Messages (3)
msg5008 - (view) Author: carlos herrera (shakari) Date: 2001-06-10 11:06
Hi

i have installed python 2.1 on my linux server 
(slackware 7) and i have installed mailman 2.0.3
i have configurated and when i call make install it 
sends a warnign message as follows:

/usr/local/lib/python2.1/regsub.py:15: 
DeprecationWarning: the regsub module is deprecated; 
please use re.sub()
  DeprecationWarning)


i would like to know what is the problem if is the 
python or the mailman ?

thank you
msg5009 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2001-06-12 17:13
Logged In: YES 
user_id=21627

This is a mailman problem; it uses a deprecated function.
You can filter the warnings out if you want, see
http://www.python.org/doc/current/lib/module-warnings.html
for details.

Most recent mailman releases don't use regsub anymore, so
updating mailman might be another option.
msg5010 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2001-06-12 17:18
Logged In: YES 
user_id=12800

Martin's right.  Upgrade to Mailman 2.0.5 which is Python
2.1 compatible.
History
Date User Action Args
2022-04-10 16:04:07adminsetgithub: 34605
2001-06-10 11:06:31shakaricreate