Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays
diff --git a/Misc/NEWS b/Misc/NEWS
index c089412..876afdd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,9 @@
 
 - Issue #10516: New copy() and clear() methods for lists and bytearrays.
 
+- Issue #11386: bytearray.pop() now throws IndexError when the bytearray is
+  empty, instead of OverflowError.
+
 Library
 -------