summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-05-17 22:34:30 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-05-17 22:34:30 (GMT)
commitd2b58a9880d119b20e1fc1c82a3e2e2d9eaa0817 (patch)
tree2b45e6e8db8d100937e4e0edfefc5470216c3f1d /Misc
parent36f74aa7f711c9defc01ab8522117b2b7db8ccd3 (diff)
downloadcpython-d2b58a9880d119b20e1fc1c82a3e2e2d9eaa0817.zip
cpython-d2b58a9880d119b20e1fc1c82a3e2e2d9eaa0817.tar.gz
cpython-d2b58a9880d119b20e1fc1c82a3e2e2d9eaa0817.tar.bz2
only recursively expand in the format spec (closes #17644)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 251804d..14be939 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.3.3 release candidate 1?
Core and Builtins
-----------------
+- Issue #17644: Fix a crash in str.format when curly braces are used in square
+ brackets.
+
- Issue #17983: Raise a SyntaxError for a ``global __class__`` statement in a
class body.