entry: Add a docstring to Feed.get_text
[pycalendar.git] / pycalendar / entry.py
index 3c1af0e02588abd71d249195d0790dd0855599f0..88a6b359b48f9a8c4932eecd31e161c23834b11a 100644 (file)
@@ -200,6 +200,10 @@ class Entry (dict):
             self._lines.append(''.join(semantic_line_chunks))
 
     def get_text(self, *args, **kwargs):
+        """Get and unescape a text value
+
+        As described in :RFC:`5545`, section 3.3.11 (Text)
+        """
         value = self.get(*args, **kwargs)
         return _text.unescape(value)