summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2019-03-12 21:03:35 -0700
committerGuido van Rossum <guido@python.org>2019-03-12 21:03:35 -0700
commitfd75ea54667b2055ece26e8f6d78f89c2269202a (patch)
tree9e913eb54dc7d3c63b308617cfa9966b685d7987
parentf1735e1f70abba3523f8b933dcd701f564010eca (diff)
downloadcpython-git-constant-kind.tar.gz
Add blurb (this is now bpo-36280)constant-kind
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-12-21-02-55.bpo-36280.mOd3iH.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-03-12-21-02-55.bpo-36280.mOd3iH.rst b/Misc/NEWS.d/next/Library/2019-03-12-21-02-55.bpo-36280.mOd3iH.rst
new file mode 100644
index 0000000000..e97285431e
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-03-12-21-02-55.bpo-36280.mOd3iH.rst
@@ -0,0 +1,2 @@
+Add a kind field to ast.Constant. It is 'u' if the literal has a 'u' prefix
+(i.e. a Python 2 style unicode literal), else None.