Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 18056fb11e6fe6e5247cd03073bd74df8ac0acc7 authored by Miss Islington (bot) on 14 November 2017, 07:01:29 UTC
bpo-32020: arraymodule: Correct missing Py_DECREF in failure case of make_array() (GH-4391) (#4392)
Tip revision: 18056fb
asdl.c
#include "Python.h"
#include "asdl.h"

GENERATE_ASDL_SEQ_CONSTRUCTOR(generic, void*);
GENERATE_ASDL_SEQ_CONSTRUCTOR(identifier, PyObject*);
GENERATE_ASDL_SEQ_CONSTRUCTOR(int, int);
back to top