Files
rdkit/Code/RDBoost/iterator_next.h
Greg Landrum 2738c35178 Fixes #1903 (#1971)
* Fixes #1903

* update SWIG bindings too
2018-07-25 09:14:17 +02:00

12 lines
210 B
C

#include <RDGeneral/export.h>
#ifndef RDKIT_ITERATOR_NEXT_INCLUDED
#define RDKIT_ITERATOR_NEXT_INCLUDED
#if PY_MAJOR_VERSION >= 3
#define NEXT_METHOD "__next__"
#else
#define NEXT_METHOD "next"
#endif
#endif