RDKit
Open-source cheminformatics and machine learning.
iterator_next.h
Go to the documentation of this file.
1 #include <RDGeneral/export.h>
2 #ifndef RDKIT_ITERATOR_NEXT_INCLUDED
3 #define RDKIT_ITERATOR_NEXT_INCLUDED
4 
5 #if PY_MAJOR_VERSION >= 3
6 #define NEXT_METHOD "__next__"
7 #else
8 #define NEXT_METHOD "next"
9 #endif
10 
11 #endif