Issue 1412837: __self - Watcom compiler reserved word (original) (raw)

Issue1412837

Created on 2006-01-23 14:07 by kbob_ru, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg27327 - (view) Author: kbob_ru (kbob_ru) Date: 2006-01-23 14:07
in Object/cobject.c there is new function int PyCObject_SetVoidPtr(PyObject *_self, void *cobj) Here _self is local variable name, but in Watcom compiler __self is reserved word means self- based pointer. When I replase _self with something else (_myself for example), it works fine!
msg27328 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2006-01-24 06:08
Logged In: YES user_id=33168 Committed revision 42167. Committed revision 42168. (2.4)
History
Date User Action Args
2022-04-11 14:56:15 admin set github: 42825
2006-01-23 14:07:38 kbob_ru create