Commit 5bd451d3 authored by Stefan Behnel's avatar Stefan Behnel

Require Py3.3 as the minimum stable ABI when using the limited C-API.

parent c964bfd3
......@@ -2,7 +2,7 @@
#if defined(CYTHON_LIMITED_API) && 0 /* disabled: enabling Py_LIMITED_API needs more work */
#ifndef Py_LIMITED_API
#if CYTHON_LIMITED_API+0 > 0
#if CYTHON_LIMITED_API+0 > 0x03030000
#define Py_LIMITED_API CYTHON_LIMITED_API
#else
#define Py_LIMITED_API 0x03030000
......
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