File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -1336,6 +1336,19 @@ class module_ : public object {
1336
1336
if (doc && options::show_user_defined_docstrings ()) {
1337
1337
result.attr (" __doc__" ) = pybind11::str (doc);
1338
1338
}
1339
+
1340
+ #if defined(GRAALVM_PYTHON) && (!defined(GRAALPY_VERSION_NUM) || GRAALPY_VERSION_NUM < 0x190000)
1341
+ // GraalPy doesn't support PyModule_GetFilenameObject,
1342
+ // so getting by attribute (see PR #5584)
1343
+ handle this_module = m_ptr;
1344
+ result.attr (" __file__" ) = this_module.attr (" __file__" );
1345
+ #else
1346
+ handle this_file = PyModule_GetFilenameObject (m_ptr);
1347
+ if (!this_file) {
1348
+ throw error_already_set ();
1349
+ }
1350
+ result.attr (" __file__" ) = this_file;
1351
+ #endif
1339
1352
attr (name) = result;
1340
1353
return result;
1341
1354
}
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ def test_nested_modules():
21
21
)
22
22
assert m .__name__ == "pybind11_tests.modules"
23
23
assert ms .__name__ == "pybind11_tests.modules.subsubmodule"
24
+ assert m .__file__ == ms .__file__
24
25
25
26
assert ms .submodule_func () == "submodule_func()"
26
27
You can’t perform that action at this time.
0 commit comments