Packaging: polished
This commit is contained in:
34
python/external/boost/libs/numpy/src/numpy.cpp
vendored
Normal file
34
python/external/boost/libs/numpy/src/numpy.cpp
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
// Copyright Jim Bosch 2010-2012.
|
||||
// Distributed under the Boost Software License, Version 1.0.
|
||||
// (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_NUMPY_INTERNAL_MAIN
|
||||
#include <boost/numpy/internal.hpp>
|
||||
#include <boost/numpy/dtype.hpp>
|
||||
|
||||
namespace boost
|
||||
{
|
||||
namespace numpy
|
||||
{
|
||||
|
||||
#if PY_MAJOR_VERSION >= 3
|
||||
int
|
||||
#else
|
||||
void
|
||||
#endif
|
||||
do_import_array()
|
||||
{
|
||||
import_array();
|
||||
}
|
||||
|
||||
void initialize(bool register_scalar_converters)
|
||||
{
|
||||
do_import_array();
|
||||
import_ufunc();
|
||||
if (register_scalar_converters)
|
||||
dtype::register_scalar_converters();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user