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 Arfrever, barry, benjamin.peterson, brett.cannon, christian.heimes, eric.araujo, eric.snow, flox, lemburg, mark.dickinson, ncoghlan, orsenthil, pitrou, rhettinger, vstinner
Date 2013-10-11.21:30:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381527024.86.0.975644498963.issue9548@psf.upfronthosting.co.za>
In-reply-to
Content
The locale module uses only collections.abc.Mapping. The import of the entire collections module can be avoided if collections.abc is renamed to _abcoll again. functools.wrap() can be replaced with:

localeconv.__doc__ = _localeconv.__doc__

The other attributes are either equal (e.g. __name__) or do not exist on builtin functions (__dict__).
History
Date User Action Args
2013-10-11 21:30:24christian.heimessetrecipients: + christian.heimes, lemburg, barry, brett.cannon, rhettinger, mark.dickinson, ncoghlan, orsenthil, pitrou, vstinner, benjamin.peterson, eric.araujo, Arfrever, flox, eric.snow
2013-10-11 21:30:24christian.heimessetmessageid: <1381527024.86.0.975644498963.issue9548@psf.upfronthosting.co.za>
2013-10-11 21:30:24christian.heimeslinkissue9548 messages
2013-10-11 21:30:24christian.heimescreate