Message229415
> 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. |
|
Date |
User |
Action |
Args |
2014-10-15 08:38:26 | mark.dickinson | set | recipients:
+ mark.dickinson, georg.brandl, rhettinger, docs@python, martin.panter, matrixise, Wilfred.Hughes |
2014-10-15 08:38:26 | mark.dickinson | set | messageid: <1413362306.77.0.971452150785.issue22237@psf.upfronthosting.co.za> |
2014-10-15 08:38:26 | mark.dickinson | link | issue22237 messages |
2014-10-15 08:38:26 | mark.dickinson | create | |
|