## ABOUT THIS RELEASE
-This is dnspython 1.15.0
+This is dnspython 1.16.0
+
+### New since 1.15.0:
+
+XXXTBSXXX
+
+### Bugs fixed since 1.15.0:
+
+* DNSSEC signature validation didn't check names correctly. [Issue #295]
+
+* The NXDOMAIN exception should not use its docstring. [Issue #253]
### New since 1.14.0:
* The AVC RR is now supported.
-### Bugs fixed since 1.15.0:
-
-* DNSSEC signature validation didn't check names correctly. [Issue #295]
-
### Bugs fixed since 1.14.0:
* Some problems with newlines in various output modes have been
if len(qnames) > 1:
msg = 'None of DNS query names exist'
else:
- msg = self.__doc__[:-1]
+ msg = 'The DNS query name does not exist'
qnames = ', '.join(map(str, qnames))
return "%s: %s" % (msg, qnames)