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.

Author christian.heimes
Recipients christian.heimes
Date 2007-10-10.21:23:30
SpamBayes Score 0.018929891
Marked as misclassified No
Message-id <1192051411.91.0.780062722344.issue1258@psf.upfronthosting.co.za>
In-reply-to
Content
The patch removes the basestring type from Python 3.0. PyString and
PyUnicode are subclasses of PyBaseObject_Type. Each occurrence of
basestring was replaces with str, mostly isinstance(egg, basestring)
with a few exceptions. PyObject_TypeCheck(args, &PyBaseString_Type) is
replaced with a check for PyUnicode and PyString.
Files
File name Uploaded
py3k_basestring_removal.patch christian.heimes, 2007-10-10.21:23:31
History
Date User Action Args
2007-10-10 21:23:32christian.heimessetspambayes_score: 0.0189299 -> 0.018929891
recipients: + christian.heimes
2007-10-10 21:23:31christian.heimessetspambayes_score: 0.0189299 -> 0.0189299
messageid: <1192051411.91.0.780062722344.issue1258@psf.upfronthosting.co.za>
2007-10-10 21:23:31christian.heimeslinkissue1258 messages
2007-10-10 21:23:31christian.heimescreate