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 Oren Milman
Recipients Oren Milman, serhiy.storchaka, vstinner
Date 2017-09-15.04:53:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1505451198.55.0.0458320879704.issue31471@psf.upfronthosting.co.za>
In-reply-to
Content
in 2.7 getenvironment() is in PC/_subprocess.c, and it also calls PyMapping_Values()
immediately after calling PyMapping_Keys().
however, _PyObject_FastCallDict() doesn't exist here.
in case of an error in both PyMapping_Keys() and PyMapping_Values(), the
error in PyMapping_Values() just overwrites the error in PyMapping_Keys().

but I haven't gone over all of the code that could be run as part of
PyMapping_Values(), so I am not sure whether something could go wrong in case PyMapping_Keys() failed.
History
Date User Action Args
2017-09-15 04:53:18Oren Milmansetrecipients: + Oren Milman, vstinner, serhiy.storchaka
2017-09-15 04:53:18Oren Milmansetmessageid: <1505451198.55.0.0458320879704.issue31471@psf.upfronthosting.co.za>
2017-09-15 04:53:18Oren Milmanlinkissue31471 messages
2017-09-15 04:53:18Oren Milmancreate