Sign in
◑
Theme
pigweed
/
third_party
/
github
/
pybind
/
pybind11
/
19ddbe5bc3eb3064201a914626ac642e1884e654
/
.
/
tests
/
test_embed
/
test_interpreter.py
blob: 424d36dea28d1ff43f5944efd04ef1519c0ac5b5 [
file
]
from
__future__
import
annotations
import
sys
from
widget_module
import
Widget
class
DerivedWidget
(
Widget
):
def
__init__
(
self
,
message
):
super
().
__init__
(
message
)
def
the_answer
(
self
):
return
42
def
argv0
(
self
):
return
sys
.
argv
[
0
]