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 loewis
Recipients loewis, serhiy.storchaka, zach.ware
Date 2014-08-05.11:23:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1407237813.25.0.742666811013.issue22136@psf.upfronthosting.co.za>
In-reply-to
Content
Serhiy: See

http://svn.python.org/projects/external/tcl-8.6.1.0/generic/tclDecls.h

where it now is

EXTERN CONST86 Tcl_ObjType * Tcl_GetObjType(const char *typeName);

I think the patch is wrong as it stands, as "const" is not a reserved word in C89. Instead, you should be using something like

#ifndef CONST86
#define CONST86
#endif

Tcl_ObjType CONST86 *BooleanType;
History
Date User Action Args
2014-08-05 11:23:33loewissetrecipients: + loewis, zach.ware, serhiy.storchaka
2014-08-05 11:23:33loewissetmessageid: <1407237813.25.0.742666811013.issue22136@psf.upfronthosting.co.za>
2014-08-05 11:23:33loewislinkissue22136 messages
2014-08-05 11:23:33loewiscreate