summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Parser/asdl_c.py7
-rw-r--r--Python/Python-ast.c7
2 files changed, 0 insertions, 14 deletions
diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py
index a81644d..17c8517 100644
--- a/Parser/asdl_c.py
+++ b/Parser/asdl_c.py
@@ -874,13 +874,6 @@ static int obj2ast_object(PyObject* obj, PyObject** out, PyArena* arena)
static int obj2ast_constant(PyObject* obj, PyObject** out, PyArena* arena)
{
- if (obj == Py_None || obj == Py_True || obj == Py_False) {
- /* don't increment the reference counter, Constant uses a borrowed
- * reference, not a strong reference */
- *out = obj;
- return 0;
- }
-
if (obj) {
if (PyArena_AddPyObject(arena, obj) < 0) {
*out = NULL;
diff --git a/Python/Python-ast.c b/Python/Python-ast.c
index 4dde11f..1193c7c 100644
--- a/Python/Python-ast.c
+++ b/Python/Python-ast.c
@@ -753,13 +753,6 @@ static int obj2ast_object(PyObject* obj, PyObject** out, PyArena* arena)
static int obj2ast_constant(PyObject* obj, PyObject** out, PyArena* arena)
{
- if (obj == Py_None || obj == Py_True || obj == Py_False) {
- /* don't increment the reference counter, Constant uses a borrowed
- * reference, not a strong reference */
- *out = obj;
- return 0;
- }
-
if (obj) {
if (PyArena_AddPyObject(arena, obj) < 0) {
*out = NULL;