diff --git a/include/nanobind/nb_eval.h b/include/nanobind/nb_eval.h index c20ee54f..18d3a17d 100644 --- a/include/nanobind/nb_eval.h +++ b/include/nanobind/nb_eval.h @@ -2,7 +2,7 @@ nanobind/nb_eval.h: Support for evaluating Python expressions and statements from strings and files - Adapted from pybind11's eval.h with + Adapted by Nico Schlömer from pybind11's eval.h with Copyright (c) 2016 Klemens Morgenstern and Wenzel Jakob diff --git a/tests/test_eval.cpp b/tests/test_eval.cpp index ed192556..d89d7308 100644 --- a/tests/test_eval.cpp +++ b/tests/test_eval.cpp @@ -1,7 +1,7 @@ /* tests/test_eval.cpp -- Usage of eval() and eval_file() - Adapted from pybind11's test_eval.cpp with + Adapted by Nico Schlömer from pybind11's test_eval.cpp with Copyright (c) 2016 Klemens D. Morgenstern