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 rhettinger
Recipients eric.snow, methane, rhettinger, vstinner
Date 2017-01-17.01:38:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1484617097.8.0.878443596506.issue29289@psf.upfronthosting.co.za>
In-reply-to
Content
This patch segfaults for me (Mac OS 10.12.2 with the default clang-800.0.42.1).

For now, pop() should be omitted.  The argument clinic doesn't cope well with optional arguments without a default value.  The generated help "pop(self, /, key, default=None)" doesn't really make since because the default is not None, it is a sentinel value.  The generated help incorrectly makes it look like OrderedDict.get() which actually does have a default=None.
History
Date User Action Args
2017-01-17 01:38:17rhettingersetrecipients: + rhettinger, vstinner, methane, eric.snow
2017-01-17 01:38:17rhettingersetmessageid: <1484617097.8.0.878443596506.issue29289@psf.upfronthosting.co.za>
2017-01-17 01:38:17rhettingerlinkissue29289 messages
2017-01-17 01:38:16rhettingercreate