Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: a473b9da152d4cdd10eccc6d8eafa2b519da121d authored by Raymond Hettinger on 01 March 2015, 01:49:47 UTC
Use unsigned division and modulo for item assignment as well.
Tip revision: a473b9d
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