Message40904
Logged In: YES
user_id=562624
If these changes are applied throughout the interpreter I
expect a significant speedup but that is not my immediate
goal. I am looking for redability, reduction of code size (both
source and binary) and reliability (less things to check or
forget to check).
I am trying to get rid of code like
if (docstr == NULL) {
docstr= PyString_InternFromString("__doc__");
if (docstr == NULL)
return NULL;
And replace it with just PyNAME(__doc__)
|
|
Date |
User |
Action |
Args |
2007-08-23 15:14:40 | admin | link | issue593627 messages |
2007-08-23 15:14:40 | admin | create | |
|