mirror of
https://github.com/boostorg/python.git
synced 2026-01-23 05:42:30 +00:00
initial commit
[SVN r13837]
This commit is contained in:
13
test/minimal.cpp
Normal file
13
test/minimal.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
// Copyright David Abrahams 2002. 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.
|
||||
#include <boost/python/module.hpp>
|
||||
|
||||
BOOST_PYTHON_MODULE_INIT(minimal_ext)
|
||||
{
|
||||
boost::python::module m("minimal_ext");
|
||||
}
|
||||
|
||||
#include "module_tail.cpp"
|
||||
2
test/minimal.py
Normal file
2
test/minimal.py
Normal file
@@ -0,0 +1,2 @@
|
||||
import minimal_ext
|
||||
|
||||
Reference in New Issue
Block a user