summaryrefslogtreecommitdiff
path: root/CHANGES.current
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2016-04-02 18:06:03 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2016-04-02 18:06:03 +0100
commita97441613eea16620505f30849713b99d2ac9051 (patch)
treee0182b8bbec3859774aabf41ac9f93f88779dbc5 /CHANGES.current
parent80e3ebf0d1d489c11958550a296b643d4031a6b2 (diff)
parentf19fd513eac3ad62f3be2978f6a2f42d6a75ddf0 (diff)
downloadswig-a97441613eea16620505f30849713b99d2ac9051.tar.gz
Merge branch 'ahnolds-py_gettar'
* ahnolds-py_gettar: update changes file for attribute fix Add python AttributeError test for non-existent attribute Fixing python attribute lookup Conflicts: CHANGES.current
Diffstat (limited to 'CHANGES.current')
-rw-r--r--CHANGES.current7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES.current b/CHANGES.current
index 36b1b3933..ba8ea2b12 100644
--- a/CHANGES.current
+++ b/CHANGES.current
@@ -5,6 +5,13 @@ See the RELEASENOTES file for a summary of changes in each release.
Version 3.0.9 (in progress)
===========================
+2016-04-02: ahnolds
+ [Python] Apply #598. Fix misleading error message when attempting to read a non-existent
+ attribute. The previous cryptic error message:
+ AttributeError: type object 'object' has no attribute '__getattr__'
+ is now replaced with one mentioning the attribute name, eg:
+ AttributeError: 'Foo' object has no attribute 'bar'
+
2016-04-02: derkuci
[Python] Patch #610 to fix #607.
Fix single arguments when using python -builtin -O with %feature("compactdefaultargs")