Issue 3985: removed string module use in distutils (original) (raw)

Created on 2008-09-28 10:30 by tarek, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
dist-no-string.diff tarek,2008-09-28 10:30
Messages (6)
msg73965 - (view) Author: Tarek Ziadé (tarek) * (Python committer) Date: 2008-09-28 10:30
This patch removes string usage from dist.py, so the module uses modern syntax.
msg83279 - (view) Author: Akira Kitada (akitada) * Date: 2009-03-07 12:26
The patch looks ok to me. Python 2.3 - 2.6 seem working fine with this patch, too.
msg102676 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2010-04-09 04:16
Patch looks good. There's only a missing space before the for in: + self.metadata.platforms = [kw.strip() + for kw in platformlist.split(',')]
msg102692 - (view) Author: Tarek Ziadé (tarek) * (Python committer) Date: 2010-04-09 07:36
Distutils is now frozen. Moving it to Distutils2
msg110689 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2010-07-18 21:30
Tarek, has this move to distutils2 taken place so we can close this, or do you wish to leave this issue open?
msg115134 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-08-27 21:45
Fixed in r73121 for 2.7 and years ago in 3.0. distutils2 was forked after the fix in 2.7.
History
Date User Action Args
2022-04-11 14:56:39 admin set github: 48235
2010-08-27 21:45:05 eric.araujo set status: open -> closedcomponents: + Distutilstitle: removed string module from distutils [patch] -> removed string module use in distutilsnosy:tarek, ezio.melotti, eric.araujo, akitada, BreamoreBoyversions: - Python 3.2messages: + resolution: accepted -> fixedstage: patch review -> resolved
2010-07-18 21:30:24 BreamoreBoy set nosy: + BreamoreBoymessages: +
2010-04-09 07:36:48 tarek set nosy:tarek, ezio.melotti, eric.araujo, akitadamessages: + components: + Distutils2, - Distutils
2010-04-09 04:16:49 ezio.melotti set versions: + Python 3.2nosy: + ezio.melottimessages: + resolution: acceptedstage: patch review
2010-04-09 01:39:43 eric.araujo set nosy: + eric.araujo
2009-03-07 12:26:16 akitada set nosy: + akitadamessages: +
2009-02-13 12:14:32 tarek set priority: normal
2009-02-06 01:31:45 tarek set assignee: tarek
2008-09-29 08:22:46 tarek set versions: + Python 3.1, Python 2.7, - Python 2.6
2008-09-28 10:31:52 tarek set title: removed string module from distutils -> removed string module from distutils [patch]
2008-09-28 10:30:52 tarek create