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 mark.dickinson
Recipients Wilfred.Hughes, docs@python, georg.brandl, mark.dickinson, martin.panter, matrixise, rhettinger
Date 2014-10-15.08:38:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1413362306.77.0.971452150785.issue22237@psf.upfronthosting.co.za>
In-reply-to
Content
> when I grep the code, I don't find it

The non-greppability is due to preprocessor evil. The culprit is this macro from Include/object.h:

  #define _Py_IDENTIFIER(varname) _Py_static_string(PyId_##varname, #varname)

along with the declaration

  _Py_IDENTIFIER(sort);

earlier in bltinmodule.c.
History
Date User Action Args
2014-10-15 08:38:26mark.dickinsonsetrecipients: + mark.dickinson, georg.brandl, rhettinger, docs@python, martin.panter, matrixise, Wilfred.Hughes
2014-10-15 08:38:26mark.dickinsonsetmessageid: <1413362306.77.0.971452150785.issue22237@psf.upfronthosting.co.za>
2014-10-15 08:38:26mark.dickinsonlinkissue22237 messages
2014-10-15 08:38:26mark.dickinsoncreate