FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python/test/import_.cpp at python313 · boostorg/python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
boostorg
/
python
Public
Notifications
You must be signed in to change notification settings
Fork
223
Star
537
Code
Issues
173
Pull requests
34
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python
/
test
/
import_.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
70 lines (56 loc) · 1.83 KB
Breadcrumbs
python
/
test
/
import_.cpp
Copy path
File metadata and controls
70 lines (56 loc) · 1.83 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//
Copyright Stefan Seefeld 2007.
//
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)
#
include
<
boost/python.hpp
>
#
include
<
boost/detail/lightweight_test.hpp
>
#
include
<
boost/bind/bind.hpp
>
#
include
<
iostream
>
#
include
<
sstream
>
namespace
bpl
=
boost::python;
void
import_test
(
char
const
*py_file_path)
{
//
Retrieve the main module
bpl::object main =
bpl::import
(
"
__main__
"
);
//
Retrieve the main module's namespace
bpl::object
global
(main.
attr
(
"
__dict__
"
));
//
Inject search path for import_ module
bpl::str
script
(
"
import sys, os.path
\n
"
"
path = os.path.dirname(%r)
\n
"
"
sys.path.insert(0, path)
"
%
bpl::str
(py_file_path));
bpl::object result =
bpl::exec
(script, global, global);
//
Retrieve the main module
bpl::object import_ =
bpl::import
(
"
import_
"
);
int
value = bpl::extract<
int
>(import_.
attr
(
"
value
"
))
BOOST_EXTRACT_WORKAROUND
;
std::cout << value << std::endl;
BOOST_TEST
(value ==
42
);
}
int
main
(
int
argc,
char
**argv)
{
BOOST_TEST
(argc ==
2
);
//
Initialize the interpreter
Py_Initialize
();
if
(
bpl::handle_exception
(
boost::bind
(import_test,argv[
1
])))
{
if
(
PyErr_Occurred
())
{
BOOST_ERROR
(
"
Python Error detected
"
);
PyErr_Print
();
}
else
{
BOOST_ERROR
(
"
A C++ exception was thrown for which
"
"
there was no exception handler registered.
"
);
}
}
//
Boost.Python doesn't support Py_Finalize yet.
//
Py_Finalize();
return
boost::report_errors
();
}
//
Including this file makes sure
//
that on Windows, any crashes (e.g. null pointer dereferences) invoke
//
the debugger immediately, rather than being translated into structured
//
exceptions that can interfere with debugging.
#
include
"
module_tail.cpp
"
Back
|
FazBrowse Home
|
New Git URL