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 ned.deily
Recipients DennisJensen, docs@python, ned.deily
Date 2016-09-21.15:51:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1474473104.19.0.720229242878.issue28242@psf.upfronthosting.co.za>
In-reply-to
Content
os.environ is documented as being a "mapping" object.  The "get" method is a standard method for all mapping objects; it's not unique to os.environ.  Thus, there is no need to specially call out "get" or any of the other "mapping" methods and operations available with os.environ or any other example of a mapping object.  The "Built-in Types" chapter of the Python Standard Library reference describes the standard types and their methods and operations.


https://docs.python.org/3/library/os.html#os.environ
https://docs.python.org/3/library/stdtypes.html#mapping-types-dict
https://docs.python.org/3/library/stdtypes.html
History
Date User Action Args
2016-09-21 15:51:44ned.deilysetrecipients: + ned.deily, docs@python, DennisJensen
2016-09-21 15:51:44ned.deilysetmessageid: <1474473104.19.0.720229242878.issue28242@psf.upfronthosting.co.za>
2016-09-21 15:51:44ned.deilylinkissue28242 messages
2016-09-21 15:51:44ned.deilycreate