Correct exception thrown attempting to access a non-existent C/C++ global variable on the 'cvar' object.

The exception thrown used to be a NameError. However, as this access is
via a primary, an AttributeError is more correct and so the exception
thrown now is an AttributeError. Reference:
http://docs.python.org/2/reference/expressions.html#attribute-references

SF Patch #346.
This commit is contained in:
William S Fulton 2014-03-02 01:28:51 +00:00
commit 7a96fba836
3 changed files with 16 additions and 2 deletions

View file

@ -28,4 +28,9 @@
Hello h;
Hello *hp;
Hello &hr = h;
void init() {
b = "string b";
x = 1234;
}
%}