Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
720136bf
Commit
720136bf
authored
Sep 10, 2016
by
Wenzel Jakob
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RAII wrapper for error state
parent
1f2e417d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
7 deletions
+13
-7
include/pybind11/cast.h
+5
-7
include/pybind11/common.h
+7
-0
include/pybind11/pybind11.h
+1
-0
No files found.
include/pybind11/cast.h
View file @
720136bf
...
...
@@ -111,18 +111,16 @@ PYBIND11_NOINLINE inline std::string error_string() {
return
"Unknown internal error occurred"
;
}
PyObject
*
type
,
*
value
,
*
traceback
;
PyErr_Fetch
(
&
type
,
&
value
,
&
traceback
);
error_scope
scope
;
// Preserve error state
std
::
string
errorString
;
if
(
type
)
{
errorString
+=
handle
(
type
).
attr
(
"__name__"
).
cast
<
std
::
string
>
();
if
(
scope
.
type
)
{
errorString
+=
handle
(
scope
.
type
).
attr
(
"__name__"
).
cast
<
std
::
string
>
();
errorString
+=
": "
;
}
if
(
value
)
errorString
+=
(
std
::
string
)
handle
(
value
).
str
();
if
(
scope
.
value
)
errorString
+=
(
std
::
string
)
handle
(
scope
.
value
).
str
();
PyErr_Restore
(
type
,
value
,
traceback
);
return
errorString
;
}
...
...
include/pybind11/common.h
View file @
720136bf
...
...
@@ -420,6 +420,13 @@ template <typename T> struct format_descriptor<T, typename std::enable_if<std::i
template
<
typename
T
>
constexpr
const
char
format_descriptor
<
T
,
typename
std
::
enable_if
<
std
::
is_integral
<
T
>::
value
>::
type
>::
value
[
2
];
/// RAII wrapper that temporarily clears any Python error state
struct
error_scope
{
PyObject
*
type
,
*
value
,
*
trace
;
error_scope
()
{
PyErr_Fetch
(
&
type
,
&
value
,
&
trace
);
}
~
error_scope
()
{
PyErr_Restore
(
type
,
value
,
trace
);
}
};
PYBIND11_DECL_FMT
(
float
,
"f"
);
PYBIND11_DECL_FMT
(
double
,
"d"
);
PYBIND11_DECL_FMT
(
bool
,
"?"
);
...
...
include/pybind11/pybind11.h
View file @
720136bf
...
...
@@ -1309,6 +1309,7 @@ NAMESPACE_END(detail)
template
<
return_value_policy
policy
=
return_value_policy
::
automatic_reference
,
typename
...
Args
>
void
print
(
Args
&&
...
args
)
{
error_scope
scope
;
// Preserve error state
auto
c
=
detail
::
collect_arguments
<
policy
>
(
std
::
forward
<
Args
>
(
args
)...);
detail
::
print
(
c
.
args
(),
c
.
kwargs
());
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment