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 peaker
Recipients
Date 2007-06-10.01:16:43
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Why is CPython copying functions to inline them?

This is not only code duplication that makes the code easy to break, it also bloats the caller function beyond readability.

I believe that using a private .c #include file with an inline keyword, or at worst, #include the function code directly is a better solution.

Is there any reason to use the method currently used by CPython?
History
Date User Action Args
2007-08-23 15:58:00adminlinkissue1700288 messages
2007-08-23 15:58:00admincreate