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 cheryl.sabella
Recipients Aaron.Meurer, cheryl.sabella, r.david.murray, rhettinger, serhiy.storchaka, vstinner
Date 2017-12-15.00:48:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513298939.23.0.213398074469.issue32300@psf.upfronthosting.co.za>
In-reply-to
Content
I'm missing something here, so please forgive me for asking, but why is it bad to add:

    def keys(self):
        return self._data.keys()

    def values(self):
        return self._data.values()

    def items(self):
        return self._data.items()

to the _Environ class?
History
Date User Action Args
2017-12-15 00:48:59cheryl.sabellasetrecipients: + cheryl.sabella, rhettinger, vstinner, r.david.murray, Aaron.Meurer, serhiy.storchaka
2017-12-15 00:48:59cheryl.sabellasetmessageid: <1513298939.23.0.213398074469.issue32300@psf.upfronthosting.co.za>
2017-12-15 00:48:59cheryl.sabellalinkissue32300 messages
2017-12-15 00:48:59cheryl.sabellacreate