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 and type usage from distutils.cmd [patch]
Type: Stage:
Components: Distutils Versions: Python 3.1, Python 2.7
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: tarek Nosy List: tarek
Priority: normal Keywords: patch

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

Files
File name Uploaded Description Edit
cmd.no-string-no-type.diff tarek, 2008-09-28 10:54
Messages (3)
msg73967 - (view) Author: Tarek Ziadé (tarek) * (Python committer) Date: 2008-09-28 10:54
I am removing in this patch the usage of string and type.

1/ I have remove string import, and used the proper modern syntax

2/
Type was used to check for object types, and sometimes isinstance() was
called. 

I have replaced all the calls by isinstance() and removed types import.
msg81252 - (view) Author: Tarek Ziadé (tarek) * (Python committer) Date: 2009-02-06 08:55
worked started in r3986
msg81323 - (view) Author: Tarek Ziadé (tarek) * (Python committer) Date: 2009-02-07 00:11
done in r69385
History
Date User Action Args
2022-04-11 14:56:39adminsetgithub: 48236
2009-02-07 00:11:55tareksetstatus: open -> closed
messages: + msg81323
2009-02-06 08:55:59tareksetmessages: + msg81252
2009-02-06 01:31:59tareksetassignee: tarek
2008-09-29 08:22:27tareksetversions: + Python 3.1, Python 2.7, - Python 2.6
2008-09-28 10:54:19tarekcreate