mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-21 20:35:05 +00:00
Update feedparser 6.0.10 (9865dec) → 6.0.11 (efcb89b).
This commit is contained in:
parent
5a82e05a6f
commit
8b59094cc3
5 changed files with 7 additions and 3 deletions
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
* Update Beautiful Soup 4.12.2 (30c58a1) to 4.12.3 (7fb5175)
|
* Update Beautiful Soup 4.12.2 (30c58a1) to 4.12.3 (7fb5175)
|
||||||
* Update CacheControl 0.13.1 (783a338) to 0.14.0 (e2be0c2)
|
* Update CacheControl 0.13.1 (783a338) to 0.14.0 (e2be0c2)
|
||||||
|
* Update feedparser 6.0.10 (9865dec) to 6.0.11 (efcb89b)
|
||||||
* Update filelock 3.12.4 (c1163ae) to 3.14.0 (8556141)
|
* Update filelock 3.12.4 (c1163ae) to 3.14.0 (8556141)
|
||||||
* Update idna library 3.4 (cab054c) to 3.7 (1d365e1)
|
* Update idna library 3.4 (cab054c) to 3.7 (1d365e1)
|
||||||
* Update Requests library 2.31.0 (8812812) to 2.32.3 (0e322af)
|
* Update Requests library 2.31.0 (8812812) to 2.32.3 (0e322af)
|
||||||
|
|
|
@ -38,7 +38,7 @@ from .util import FeedParserDict
|
||||||
|
|
||||||
__author__ = "Kurt McKee <contactme@kurtmckee.org>"
|
__author__ = "Kurt McKee <contactme@kurtmckee.org>"
|
||||||
__license__ = "BSD 2-clause"
|
__license__ = "BSD 2-clause"
|
||||||
__version__ = "6.0.10"
|
__version__ = "6.0.11"
|
||||||
|
|
||||||
# HTTP "User-Agent" header to send to servers when downloading feeds.
|
# HTTP "User-Agent" header to send to servers when downloading feeds.
|
||||||
# If you are embedding feedparser in a larger application, you should
|
# If you are embedding feedparser in a larger application, you should
|
||||||
|
|
|
@ -314,7 +314,7 @@ def _parse_file_inplace(
|
||||||
except xml.sax.SAXNotSupportedException:
|
except xml.sax.SAXNotSupportedException:
|
||||||
pass
|
pass
|
||||||
saxparser.setContentHandler(feed_parser)
|
saxparser.setContentHandler(feed_parser)
|
||||||
saxparser.setErrorHandler(feed_parser)
|
saxparser.setErrorHandler(feed_parser) # type: ignore[arg-type]
|
||||||
source = xml.sax.xmlreader.InputSource()
|
source = xml.sax.xmlreader.InputSource()
|
||||||
|
|
||||||
# If an encoding was detected, decode the file on the fly;
|
# If an encoding was detected, decode the file on the fly;
|
||||||
|
|
|
@ -91,6 +91,10 @@ def _parse_date_rfc822(date):
|
||||||
parts.extend(("00:00:00", "0000"))
|
parts.extend(("00:00:00", "0000"))
|
||||||
# Remove the day name
|
# Remove the day name
|
||||||
if parts[0][:3] in day_names:
|
if parts[0][:3] in day_names:
|
||||||
|
# Comma without spaces:
|
||||||
|
# 'Fri,24 Nov 2023 18:28:36 -0000'
|
||||||
|
if "," in parts[0] and parts[0][-1] != ",":
|
||||||
|
parts.insert(1, parts[0].rpartition(",")[2])
|
||||||
parts = parts[1:]
|
parts = parts[1:]
|
||||||
if len(parts) < 5:
|
if len(parts) < 5:
|
||||||
# If there are still fewer than five parts, there's not enough
|
# If there are still fewer than five parts, there's not enough
|
||||||
|
|
|
@ -528,7 +528,6 @@ class MissingEncoding(io.UnsupportedOperation):
|
||||||
|
|
||||||
|
|
||||||
class StreamFactory:
|
class StreamFactory:
|
||||||
|
|
||||||
"""Decode on the fly a binary stream that *may* have a known encoding.
|
"""Decode on the fly a binary stream that *may* have a known encoding.
|
||||||
|
|
||||||
If the underlying stream is seekable, it is possible to call
|
If the underlying stream is seekable, it is possible to call
|
||||||
|
|
Loading…
Reference in a new issue