Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: c33ae06cbf9deae1ef6bb56d59c710c0b55b61f0 authored by Sandro Tosi on 18 February 2012, 15:05:34 UTC
fix error in memoryview example; thanks to kan lianlian from docs@
Tip revision: c33ae06
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