From ca407f8ab56cbd7c19517f62e227e1669d08f5aa Mon Sep 17 00:00:00 2001 From: Kevin Daudt Date: Wed, 4 Mar 2020 11:33:26 +0000 Subject: community/py3-parso: upgrade to 0.6.2 Closes !4984 --- community/py3-parso/fix-python-3.8.2.patch | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 community/py3-parso/fix-python-3.8.2.patch (limited to 'community/py3-parso/fix-python-3.8.2.patch') diff --git a/community/py3-parso/fix-python-3.8.2.patch b/community/py3-parso/fix-python-3.8.2.patch new file mode 100644 index 0000000000..1a2254c2b6 --- /dev/null +++ b/community/py3-parso/fix-python-3.8.2.patch @@ -0,0 +1,15 @@ +diff --git a/parso/python/errors.py b/parso/python/errors.py +index a6f3ae9..afc207d 100644 +--- a/parso/python/errors.py ++++ b/parso/python/errors.py +@@ -977,8 +977,8 @@ class _CheckAssignmentRule(SyntaxRule): + if error is not None: + if is_namedexpr: + # c.f. CPython bpo-39176, should be changed in next release +- # message = 'cannot use assignment expressions with %s' % error +- message = 'cannot use named assignment with %s' % error ++ message = 'cannot use assignment expressions with %s' % error ++ #message = 'cannot use named assignment with %s' % error + else: + cannot = "can't" if self._normalizer.version < (3, 8) else "cannot" + message = ' '.join([cannot, "delete" if is_deletion else "assign to", error]) -- cgit v1.2.3