mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
11 lines
212 B
C
11 lines
212 B
C
#include <RDGeneral/export.h>
|
|
#ifndef RDKIT_PYINT_API_INCLUDED
|
|
#define RDKIT_PYINT_API_INCLUDED
|
|
|
|
#if PY_MAJOR_VERSION >= 3
|
|
#define PyInt_FromLong PyLong_FromLong
|
|
#define PyInt_AsLong PyLong_AsLong
|
|
#endif
|
|
|
|
#endif
|