summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2020-02-12 20:37:49 (GMT)
committerGitHub <noreply@github.com>2020-02-12 20:37:49 (GMT)
commit6e619c48b8e804ece9521453fc8da0640a04d5b1 (patch)
treeb0814052868c0397aa1cae70827bf331d7e27be4 /Misc
parent674935b8caf33e47c78f1b8e197b1b77a04992d2 (diff)
downloadcpython-6e619c48b8e804ece9521453fc8da0640a04d5b1.zip
cpython-6e619c48b8e804ece9521453fc8da0640a04d5b1.tar.gz
cpython-6e619c48b8e804ece9521453fc8da0640a04d5b1.tar.bz2
bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-02-12-12-01-26.bpo-39474.RZMEUH.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-02-12-12-01-26.bpo-39474.RZMEUH.rst b/Misc/NEWS.d/next/Library/2020-02-12-12-01-26.bpo-39474.RZMEUH.rst
new file mode 100644
index 0000000..e990f84
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-02-12-12-01-26.bpo-39474.RZMEUH.rst
@@ -0,0 +1,2 @@
+Fixed starting position of AST for expressions like ``(a)(b)``, ``(a)[b]``
+and ``(a).b``.