summarylogtreecommitdiffstats
path: root/0050-grammar-fixes.patch
diff options
context:
space:
mode:
authoratomlong2021-10-23 17:55:22 +0800
committeratomlong2021-10-23 18:06:15 +0800
commit80096c8de4b34ec1ed8f30bb428918cd592b2424 (patch)
treeb48dd1e73de9ea35a4709fb6b93deb16331ec514 /0050-grammar-fixes.patch
parent89a67c05174951d172252b1db96ff93cc4ec4bcd (diff)
downloadaur-mingw-w64-python.tar.gz
update to 3.9.7
Diffstat (limited to '0050-grammar-fixes.patch')
-rw-r--r--0050-grammar-fixes.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/0050-grammar-fixes.patch b/0050-grammar-fixes.patch
deleted file mode 100644
index cc3d5f8eb08d..000000000000
--- a/0050-grammar-fixes.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From ece4431ade66c4abb835a489cacc002545ccb13a Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9?=
- <alexey.pawlow@gmail.com>
-Date: Thu, 17 Jun 2021 18:51:56 +0530
-Subject: [PATCH 050/N] grammar fixes
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Co-authored-by: Алексей <alexey.pawlow@gmail.com>
----
- Modules/parsermodule.c | 2 +-
- Python/graminit.c | 3 ++-
- 2 files changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c
-index 24b0ffb..98a3759 100644
---- a/Modules/parsermodule.c
-+++ b/Modules/parsermodule.c
-@@ -38,7 +38,7 @@
- #include "grammar.h"
- #include "parsetok.h"
-
--extern grammar _PyParser_Grammar; /* From graminit.c */
-+PyAPI_DATA(grammar) _PyParser_Grammar; /* From graminit.c */
-
- #ifdef lint
- #include <note.h>
-diff --git a/Python/graminit.c b/Python/graminit.c
-index b7aa528..4a1ee9a 100644
---- a/Python/graminit.c
-+++ b/Python/graminit.c
-@@ -2,7 +2,8 @@
-
- #include "exports.h"
- #include "grammar.h"
--Py_EXPORTED_SYMBOL grammar _PyParser_Grammar;
-+#include "pyport.h"
-+PyAPI_DATA(grammar) _PyParser_Grammar;
- static const arc arcs_0_0[3] = {
- {2, 1},
- {3, 2},
---
-2.32.0
-