diff options
author | gatecat <gatecat@ds0.me> | 2021-08-19 12:36:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 12:36:32 +0100 |
commit | 6ae9b471554433f2393796d2abb42f31d4a8ccea (patch) | |
tree | 00114f07f994e145294489a3e67e3a6a215346c0 | |
parent | b37d133c43c45862bd5c550b5d7fffaa8c49b968 (diff) | |
parent | df67783dd36260b4c30bd0187d2edab1107942f5 (diff) | |
download | nextpnr-6ae9b471554433f2393796d2abb42f31d4a8ccea.tar.gz nextpnr-6ae9b471554433f2393796d2abb42f31d4a8ccea.tar.bz2 nextpnr-6ae9b471554433f2393796d2abb42f31d4a8ccea.zip |
Merge pull request #800 from smunaut/fix_py_portrefvector
pybindings: Fix mapping for PortRefVector
-rw-r--r-- | common/pybindings.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/pybindings.cc b/common/pybindings.cc index 2f672a41..0e087e98 100644 --- a/common/pybindings.cc +++ b/common/pybindings.cc @@ -285,6 +285,8 @@ PYBIND11_EMBEDDED_MODULE(MODULE_NAME, m) WRAP_MAP(m, WireMap, wrap_context<PipMap &>, "WireMap"); WRAP_MAP_UPTR(m, RegionMap, "RegionMap"); + WRAP_VECTOR(m, PortRefVector, wrap_context<PortRef &>); + typedef dict<IdString, ClockFmax> ClockFmaxMap; WRAP_MAP(m, ClockFmaxMap, pass_through<ClockFmax>, "ClockFmaxMap"); |