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 leewz
Recipients leewz
Date 2016-04-20.11:36:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1461152182.96.0.373784885739.issue26809@psf.upfronthosting.co.za>
In-reply-to
Content
I don't know if this kind of thing matters, but `from string import ChainMap` works (imports from `collections). It's used internally by `string`. This was done when ChainMap was made official:
https://github.com/python/cpython/commit/2886808d3809d69a6e9b360380080140b95df0b6#diff-4db7f78c8ac9907c7ad6231730d7900c

You can see in the above commit that `configparser` had `_ChainMap` changed to `ChainMap as _ChainMap`, but this was not done in `string`.
History
Date User Action Args
2016-04-20 11:36:23leewzsetrecipients: + leewz
2016-04-20 11:36:22leewzsetmessageid: <1461152182.96.0.373784885739.issue26809@psf.upfronthosting.co.za>
2016-04-20 11:36:22leewzlinkissue26809 messages
2016-04-20 11:36:22leewzcreate