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: removed string module use in distutils
Type: Stage: resolved
Components: Distutils, Distutils2 Versions: Python 3.1, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: tarek Nosy List: BreamoreBoy, akitada, eric.araujo, ezio.melotti, tarek
Priority: normal Keywords: patch

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:39adminsetgithub: 48235
2010-08-27 21:45:05eric.araujosetstatus: open -> closed

components: + Distutils
title: removed string module from distutils [patch] -> removed string module use in distutils
nosy: tarek, ezio.melotti, eric.araujo, akitada, BreamoreBoy
versions: - Python 3.2
messages: + msg115134
resolution: accepted -> fixed
stage: patch review -> resolved
2010-07-18 21:30:24BreamoreBoysetnosy: + BreamoreBoy
messages: + msg110689
2010-04-09 07:36:48tareksetnosy: tarek, ezio.melotti, eric.araujo, akitada
messages: + msg102692
components: + Distutils2, - Distutils
2010-04-09 04:16:49ezio.melottisetversions: + Python 3.2
nosy: + ezio.melotti

messages: + msg102676

resolution: accepted
stage: patch review
2010-04-09 01:39:43eric.araujosetnosy: + eric.araujo
2009-03-07 12:26:16akitadasetnosy: + akitada
messages: + msg83279
2009-02-13 12:14:32tareksetpriority: normal
2009-02-06 01:31:45tareksetassignee: tarek
2008-09-29 08:22:46tareksetversions: + Python 3.1, Python 2.7, - Python 2.6
2008-09-28 10:31:52tareksettitle: removed string module from distutils -> removed string module from distutils [patch]
2008-09-28 10:30:52tarekcreate