Browse Source

[2438] updated doc about direct construction of RRsetCollectionBase.

that constructor is provided, but results in an exception.
JINMEI Tatuya 12 years ago
parent
commit
e149d57f77
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/lib/dns/python/rrset_collection_python_inc.cc

+ 3 - 3
src/lib/dns/python/rrset_collection_python_inc.cc

@@ -1,7 +1,7 @@
 namespace {
 namespace {
 // Modifications
 // Modifications
 //   - libdns++ => isc.dns, libdatasrc => isc.datasrc
 //   - libdns++ => isc.dns, libdatasrc => isc.datasrc
-//   - note about the constructor.
+//   - note about the direct construction.
 //   - add note about iteration
 //   - add note about iteration
 const char* const RRsetCollectionBase_doc = "\
 const char* const RRsetCollectionBase_doc = "\
 Generic class to represent a set of RRsets.\n\
 Generic class to represent a set of RRsets.\n\
@@ -18,8 +18,8 @@ maybe class) and a way to iterate over all RRsets.\n\
 See RRsetCollection for a simple isc.dns implementation. Other modules\n\
 See RRsetCollection for a simple isc.dns implementation. Other modules\n\
 such as isc.datasrc will have another implementation.\n\
 such as isc.datasrc will have another implementation.\n\
 \n\
 \n\
-This base class cannot be directly instantiated, so no constructor is\n\
-defined.\n\
+This base class cannot be directly instantiated.  Such an attempt will\n\
+result in a TypeError exception.\n\
 \n\
 \n\
 ";
 ";