Fix handling on negative numbers in ast.literal_eval().
diff --git a/Misc/NEWS b/Misc/NEWS
index e62dc77..ade83bf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@
Core and Builtins
-----------------
+- ast.literal_eval() can now handle negative numbers. It is also a little
+ more liberal in what it accepts without compromising the safety of the
+ evaluation. For example, 3j+4 and 3+4+5 are both accepted.
+
- Issue #10006: type.__abstractmethods__ now raises an AttributeError. As a
result metaclasses can now be ABCs (see #9533).