Fix when is 'self' used as a parameter name in Python

Fix corner case for variable names called 'self' after merging in patch #201
This commit is contained in:
William S Fulton 2014-10-28 06:59:30 +00:00
commit a6efdb7999
3 changed files with 8 additions and 2 deletions

View file

@ -130,7 +130,7 @@ PYTHONKW(None);
/*
'self' is also a bad Name
*/
PYTHONBN(self);
PYTHONKW(self);
#undef PYTHONBN
#undef PYTHONKW