From: Bob Halley Date: Mon, 2 Jan 2017 15:30:39 +0000 (-0800) Subject: adjust __init__ now that we include it in class description X-Git-Tag: v1.16.0~94 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac74e75994f384a7f37ef9ced333f207b626c57c;p=thirdparty%2Fdnspython.git adjust __init__ now that we include it in class description --- diff --git a/dns/name.py b/dns/name.py index abff256f..951488ed 100644 --- a/dns/name.py +++ b/dns/name.py @@ -325,8 +325,7 @@ class Name(object): __slots__ = ['labels'] def __init__(self, labels): - """Initialize a domain name from a list of labels. - *labels* is any iterable whose values are ``text`` or ``binary``. + """*labels* is any iterable whose values are ``text`` or ``binary``. """ labels = [_maybe_convert_to_binary(x) for x in labels]