-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Description
class Content(Text):
"""The atom:content element"""
def __init__(self, content_type=None, src=None, text=None,
extension_elements=None,
extension_attributes=None):
"""Constructor for Content
Args:
content_type: string
src: string
text: str The text data in the this element
extension_elements: list A list of ExtensionElement instances
extension_attributes: dict A dictionary of attribute value string pairs
"""
self.type = content_type
self.src = None <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
Original issue reported on code.google.com by api.jscu...@gmail.com
on 4 Oct 2007 at 1:29