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 terry.reedy
Recipients cheryl.sabella, terry.reedy
Date 2018-02-20.22:11:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1519164719.25.0.467229070634.issue32874@psf.upfronthosting.co.za>
In-reply-to
Content
Response to msg312428: I would generally prefer to put off using 3.x feature in module m until after we think we are done patching m for 3.(x-1), but do so before 3.x.0 release.  When 3.x-1 went to security status a week after the 3.x release, this was not much an issue.

In this case, we could use 'isascii' freely after
3.7+: isascii = str.isascii
3.6:  def isascii(s): return all(ord(c) < 128 for c in s)

Concrete code change proposals, including in hyperparser, should go on #32880.

In #21765, I mentioned looking at ColorDelegator and UndoDelegator.  I never did that, but added this to my list of possible issues.
History
Date User Action Args
2018-02-20 22:11:59terry.reedysetrecipients: + terry.reedy, cheryl.sabella
2018-02-20 22:11:59terry.reedysetmessageid: <1519164719.25.0.467229070634.issue32874@psf.upfronthosting.co.za>
2018-02-20 22:11:59terry.reedylinkissue32874 messages
2018-02-20 22:11:59terry.reedycreate