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 orenti
Recipients
Date 2002-08-12.12:10:51
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
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__)
History
Date User Action Args
2007-08-23 15:14:40adminlinkissue593627 messages
2007-08-23 15:14:40admincreate