Fix 'self' parameter name clash when generating for Python builtin

This commit is contained in:
William S Fulton 2014-10-31 07:23:08 +00:00
commit 6d6cefa791
2 changed files with 11 additions and 0 deletions

View file

@ -11,5 +11,6 @@ struct Foo {
virtual ~Foo() {}
virtual void check_abstract(int abstract) {} // for Java, C#, D...
virtual void check_self(int self) {} // self for Python
virtual void check_from(int from) {} // for Python
};
%}