Sign in
pigweed
/
third_party
/
github
/
pybind
/
pybind11
/
6be64304b7e5cd4792fcd25d031127b99ef474bc
/
.
/
tests
/
test_embed
/
test_interpreter.py
blob: 5ab55a4b37137effa008016bb152c7ad4d957c47 [
file
]
# -*- coding: utf-8 -*-
import
sys
from
widget_module
import
Widget
class
DerivedWidget
(
Widget
):
def
__init__
(
self
,
message
):
super
(
DerivedWidget
,
self
).
__init__
(
message
)
def
the_answer
(
self
):
return
42
def
argv0
(
self
):
return
sys
.
argv
[
0
]