#13899: \A, \Z, and \B now correctly match the A, Z, and B literals when used inside character classes (e.g. [A]). Patch by Matthew Barnett.
diff --git a/Misc/NEWS b/Misc/NEWS
index 469ca8b..1f4e282 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -186,6 +186,9 @@
Library
-------
+- Issue #13899: \A, \Z, and \B now correctly match the A, Z, and B literals
+ when used inside character classes (e.g. '[\A]'). Patch by Matthew Barnett.
+
- Issue #15109: Fix regression in sqlite3's iterdump method where it would
die with an encoding error if the database contained string values
containing non-ASCII. (Regression was introduced by fix for 9750).