Parse feeds in Python
I noticed that the latest released version of feedparser crashes, when a CDATA section contains a C Code snippets. Here is an example on how to reproduce the issue. - Install feedparser via `python -m pip install feedparser` - RSS XML Crash example - [rss.zip](https://github.com/kurtmckee/feedparser/files/11798235/rss.zip) - or you could use the original feed `https://blog.trailofbits.com/feed/` ```python import feedparser with open("./rss_code_crash.xml", "r") as f: rss_data = f.read() rss = feedparser.parse(rss_data) # Or just this: #rss = feedparser.parse('https://blog.trailofbits.com/feed/') ``` I tested the same issue on the develop branch, but the crash does not occur their. Thanks for your support.
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by TheVamp and has received 6 comments.