Commit 1d6a7297 authored by Tim Peters's avatar Tim Peters

More limits.h stuff in node.c.

Fred, check this!
parent 0b71ceae
/* Parse tree node implementation */
#include "pgenheaders.h"
#include "Python.h"
#include "node.h"
#include "errcode.h"
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
#ifndef INT_MAX
#define INT_MAX 2147483647
#endif
node *
PyNode_New(int type)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment