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 tim.peters
Recipients
Date 2002-08-27.20:20:48
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=31435

PyMapping_Keys is a macro -- it can't be exported, as there 
is no function of that name.  Its expansion is supplied by 
including Python.h.

PyMapping_Size is deliberately undocumented; it's an 
obsolete name for PyMapping_Length.  Note that the point 
isn't to export every conceivable entry point, it's to make the 
documented C API available.  A lot of stuff in the header files 
exists only for backward compatibility with obsolete spellings.
History
Date User Action Args
2007-08-23 14:04:34adminlinkissue590207 messages
2007-08-23 14:04:34admincreate