aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-parso/fix-python-3.8.2.patch
diff options
context:
space:
mode:
authorKevin Daudt <kdaudt@alpinelinux.org>2020-04-18 16:53:24 +0000
committerKevin Daudt <kdaudt@alpinelinux.org>2020-04-18 16:53:24 +0000
commit802135ba072e2f83db61d9a34dee444f4cf26e84 (patch)
treeb83128aeb123b956ad1da6ad90feddd476917afa /community/py3-parso/fix-python-3.8.2.patch
parent5f03ad96c51c91a8557019b4afd3446981222ffa (diff)
downloadaports-802135ba072e2f83db61d9a34dee444f4cf26e84.tar.bz2
aports-802135ba072e2f83db61d9a34dee444f4cf26e84.tar.xz
community/py3-parso: upgrade to 0.7.0
Diffstat (limited to 'community/py3-parso/fix-python-3.8.2.patch')
-rw-r--r--community/py3-parso/fix-python-3.8.2.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/community/py3-parso/fix-python-3.8.2.patch b/community/py3-parso/fix-python-3.8.2.patch
deleted file mode 100644
index 1a2254c2b6..0000000000
--- a/community/py3-parso/fix-python-3.8.2.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-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])