Files
MINGW-packages/mingw-w64-python/0043-grammar-fixes.patch
Christoph Reiter 8198ab6550 python: Update to 3.9.7
This also adds builtin zoneinfo support like on Unix
2021-09-22 09:11:46 +02:00

46 lines
1.2 KiB
Diff

From 36b85a28791eb087338e12f796e8d473d22f3ace 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 043/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.33.0