mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-05 22:04:27 +08:00
12 lines
181 B
C
12 lines
181 B
C
#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
|