Skip to content

Commit b7e064b

Browse files
committed
[GR-21420][GR-18238][GR-18234] Update to Python 3.8.2
PullRequest: graalpython/847
2 parents 4e62b07 + 2626fbc commit b7e064b

File tree

902 files changed

+91868
-68711
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

902 files changed

+91868
-68711
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ Python3.g4.stamp
5454
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/Py*.c
5555
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/Test*.c
5656
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/*.sha256
57+
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/PointerEquality_Primitive.c
5758
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/buffer.c
5859
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/format_specifier_w_star.c
5960
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/memoryview_member_flags.c
@@ -64,9 +65,8 @@ Python3.g4.stamp
6465
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/parseargs_O_typecheck.c
6566
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/parseargs_S.c
6667
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/parseargs_U.c
67-
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/parseargs_valist.c
6868
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/parseargs_Y.c
69-
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/PointerEquality_Primitive.c
69+
/graalpython/com.oracle.graal.python.test/src/tests/cpyext/parseargs_valist.c
7070
/*.diff
7171
/testenv
7272
## generated from: pyhocon -i ci.hocon -f json -o ci.json

graalpython/com.oracle.graal.python.benchmarks/python/micro/c_arith-binop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
sizeof(PyFloatObject), /* tp_basicsize */
4848
0, /* tp_itemsize */
4949
0, /* tp_dealloc */
50-
0, /* tp_print */
50+
0, /* tp_vectorcall_offset */
5151
0, /* tp_getattr */
5252
0, /* tp_setattr */
5353
0, /* tp_reserved */

graalpython/com.oracle.graal.python.benchmarks/python/micro/c_arith_binop_2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
sizeof(PyFloatObject), /* tp_basicsize */
138138
0, /* tp_itemsize */
139139
0, /* tp_dealloc */
140-
0, /* tp_print */
140+
0, /* tp_vectorcall_offset */
141141
0, /* tp_getattr */
142142
0, /* tp_setattr */
143143
0, /* tp_reserved */

graalpython/com.oracle.graal.python.benchmarks/python/micro/c_member_access.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
sizeof(ObjectWithMember), /* tp_basicsize */
7373
0, /* tp_itemsize */
7474
0, /* tp_dealloc */
75-
0, /* tp_print */
75+
0, /* tp_vectorcall_offset */
7676
0, /* tp_getattr */
7777
0, /* tp_setattr */
7878
0, /* tp_reserved */

graalpython/com.oracle.graal.python.cext/include/Python.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* The Universal Permissive License (UPL), Version 1.0
@@ -129,6 +129,10 @@
129129
#define Py_DECREF(o) 0
130130
#undef Py_INCREF
131131
#define Py_INCREF(o) 0
132+
#undef Py_XINCREF
133+
#define Py_XINCREF(o) 0
134+
#undef Py_XDECREF
135+
#define Py_XDECREF(o) 0
132136

133137
/*
134138
* #define Py_INCREF(op) ( \

0 commit comments

Comments
 (0)