From 48b22d78b84f0febc150372e89dadb2d202c4c4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nico=20Schl=C3=B6mer?= Date: Tue, 19 Sep 2023 17:40:14 +0200 Subject: [PATCH] add name --- include/nanobind/nb_eval.h | 2 +- tests/test_eval.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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