All args are expected to be strings
(self, url, length, mime_type)
| 287 | """An RSS enclosure""" |
| 288 | |
| 289 | def __init__(self, url, length, mime_type): |
| 290 | "All args are expected to be strings" |
| 291 | self.length, self.mime_type = length, mime_type |
| 292 | self.url = iri_to_uri(url) |
| 293 | |
| 294 | |
| 295 | class RssFeed(SyndicationFeed): |
nothing calls this directly
no test coverage detected