Skip to content

Commit 8f00d1e

Browse files
henryiiirwgk
andauthored
fix: set __file__ on submodules (#5584)
* fix: set __file__ on submodules The docs state ['The caller is responsible for setting a `__file__` attribute'](https://docs.python.org/3/c-api/module.html), but we were not doing that, which interferes with pickling objects in submodules using cloudpickle. Users previously had to set the `__file__` attributes manually, such as in https://github.com/scikit-hep/boost-histogram/blob/1fbbe1632e1665863b9c84b10edf6aa659a14bf1/src/boost_histogram/histogram.py#L83-L90. Signed-off-by: Henry Schreiner <[email protected]> * fix: support GraalPy Signed-off-by: Henry Schreiner <[email protected]> * fix: workaround only for GraalPython Signed-off-by: Henry Schreiner <[email protected]> * Add GRAALPY_VERSION_NUM to GraalPy workaround * Fix "GRAALPY_VERSION_NUM not defined" issue ``` /Users/runner/work/pybind11/pybind11/include/pybind11/pybind11.h:1340:32: error: 'GRAALPY_VERSION_NUM' is not defined, evaluates to 0 [-Werror,-Wundef] ^ ``` Related ChatGPT conversation: https://chatgpt.com/share/67e6cb99-84b0-8008-99d6-aadc70242cf3 --------- Signed-off-by: Henry Schreiner <[email protected]> Co-authored-by: Ralf W. Grosse-Kunstleve <[email protected]>
1 parent c1cd022 commit 8f00d1e

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

include/pybind11/pybind11.h

+13
Original file line numberDiff line numberDiff line change
@@ -1336,6 +1336,19 @@ class module_ : public object {
13361336
if (doc && options::show_user_defined_docstrings()) {
13371337
result.attr("__doc__") = pybind11::str(doc);
13381338
}
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
13391352
attr(name) = result;
13401353
return result;
13411354
}

tests/test_modules.py

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ def test_nested_modules():
2121
)
2222
assert m.__name__ == "pybind11_tests.modules"
2323
assert ms.__name__ == "pybind11_tests.modules.subsubmodule"
24+
assert m.__file__ == ms.__file__
2425

2526
assert ms.submodule_func() == "submodule_func()"
2627

0 commit comments

Comments
 (0)