Message229415
| 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. |
|