2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-20 16:52:15 +00:00
Files
python/none.h
2000-10-13 13:49:34 +00:00

22 lines
641 B
C++

// (C) Copyright David Abrahams 2000. Permission to copy, use, modify, sell and
// distribute this software is granted provided this copyright notice appears
// in all copies. This software is provided "as is" without express or implied
// warranty, and with no claim as to its suitability for any purpose.
//
// The author gratefully acknowleges the support of Dragon Systems, Inc., in
// producing this work.
#ifndef NONE_DWA_052000_H_
# define NONE_DWA_052000_H_
# include "pyconfig.h"
# include "wrap_python.h"
namespace py {
inline PyObject* none() { Py_INCREF(Py_None); return Py_None; }
}
#endif // NONE_DWA_052000_H_