summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-03-17 13:15:56 +0100
committerArthur Zamarin <arthurzam@gentoo.org>2023-03-17 14:34:12 +0200
commit6bd0f37b500ed7410328935e6900e8240f360abf (patch)
tree210dd95c9214db94c9cb01d631b33af2c9ad422d /dev-python/typed-ast
parentdev-python/sh: remove unused patch(es) (diff)
downloadgentoo-6bd0f37b500ed7410328935e6900e8240f360abf.tar.gz
gentoo-6bd0f37b500ed7410328935e6900e8240f360abf.tar.bz2
gentoo-6bd0f37b500ed7410328935e6900e8240f360abf.zip
dev-python/typed-ast: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/30178 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/typed-ast')
-rw-r--r--dev-python/typed-ast/files/typed-ast-1.4.3-python310.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/dev-python/typed-ast/files/typed-ast-1.4.3-python310.patch b/dev-python/typed-ast/files/typed-ast-1.4.3-python310.patch
deleted file mode 100644
index 7c95f2465f0d..000000000000
--- a/dev-python/typed-ast/files/typed-ast-1.4.3-python310.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-https://github.com/python/typed_ast/commit/123286721923ae8f3885dbfbad94d6ca940d5c96
-https://bugs.gentoo.org/874900
-
-From 123286721923ae8f3885dbfbad94d6ca940d5c96 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
-Date: Wed, 10 Nov 2021 19:15:50 +0100
-Subject: [PATCH] Define _PyUnicode_DecodeUnicodeEscape even on Python 3.6+
- (#171)
-
---- a/ast3/Python/ast.c
-+++ b/ast3/Python/ast.c
-@@ -56,6 +56,8 @@ _PyBytes_DecodeEscape(const char *s,
- return PyBytes_DecodeEscape(s, len, errors, unicode, recode_encoding);
- }
-
-+#endif
-+
- PyObject *
- _PyUnicode_DecodeUnicodeEscape(const char *s,
- Py_ssize_t size,
-@@ -66,8 +68,6 @@ _PyUnicode_DecodeUnicodeEscape(const char *s,
- return PyUnicode_DecodeUnicodeEscape(s, size, errors);
- }
-
--#endif
--
- static int validate_stmts(asdl_seq *);
- static int validate_exprs(asdl_seq *, expr_context_ty, int);
- static int validate_nonempty_seq(asdl_seq *, const char *, const char *);
-