1234567891011121314151617181920 |
- #ifndef NONE_DWA_052000_H_
- # define NONE_DWA_052000_H_
- # include <boost/python/detail/prefix.hpp>
- namespace boost { namespace python { namespace detail {
- inline PyObject* none() { Py_INCREF(Py_None); return Py_None; }
-
- }}}
- #endif
|