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.

classification
Title: __self - Watcom compiler reserved word
Type: Stage:
Components: None Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: kbob_ru, nnorwitz
Priority: normal Keywords:

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:15adminsetgithub: 42825
2006-01-23 14:07:38kbob_rucreate