learn more

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-02-27 20:25:27 -05:00
parent f19bbd492f
commit 7cd449d920
+2 -2
View File
@@ -36,7 +36,7 @@ class BaseParser:
@property
def raw_html(self):
"""Bytes representation of the HTML content."""
"""Bytes representation of the HTML content (`learn more <http://www.diveintopython3.net/strings.html>`_."""
if self._html:
return self._html
else:
@@ -44,7 +44,7 @@ class BaseParser:
@property
def html(self) -> bytes:
"""Unicode representation of the HTML content."""
"""Unicode representation of the HTML content (`learn more <http://www.diveintopython3.net/strings.html>`_)."""
if self._html:
return self._html.decode(self.encoding)
else: