From 75db18e454f7a07b127760d8874840ca2365c9ef Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 5 Apr 2024 17:14:45 +0200 Subject: [PATCH 1/2] Fix typo. --- src/lxml/serializer.pxi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxml/serializer.pxi b/src/lxml/serializer.pxi index 0a7a1e436..5e7510a3f 100644 --- a/src/lxml/serializer.pxi +++ b/src/lxml/serializer.pxi @@ -572,7 +572,7 @@ cdef _write_attr_string(tree.xmlOutputBuffer* buf, const char *string): # output to file-like objects cdef object io_open -from io import open +from io import open as io_open cdef object gzip import gzip From a22e83caf637c8c68030da0278591df60c994126 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 7 Apr 2024 20:06:16 +0200 Subject: [PATCH 2/2] Update changelog. --- CHANGES.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 3431da82c..40d170f8a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,6 +2,16 @@ lxml changelog ============== +5.2.2 (2024-??-??) +================== + +Bugs fixed +---------- + +* GH#417: The ``test_feed_parser`` test could fail if ``lxml_html_clean`` was not installed. + It is now skipped in that case. + + 5.2.1 (2024-04-02) ==================