aboutsummaryrefslogtreecommitdiffstats
path: root/common/pybindings.cc
diff options
context:
space:
mode:
Diffstat (limited to 'common/pybindings.cc')
-rw-r--r--common/pybindings.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/pybindings.cc b/common/pybindings.cc
index f84d21f5..b15a6c79 100644
--- a/common/pybindings.cc
+++ b/common/pybindings.cc
@@ -107,9 +107,9 @@ BOOST_PYTHON_MODULE(MODULE_NAME)
// WRAP_MAP(decltype(CellInfo::ports), "IdPortMap");
// WRAP_MAP(decltype(CellInfo::pins), "IdIdMap");
- class_<BaseCtx, BaseCtx *, boost::noncopyable>("BaseCtx", no_init)
- .add_property("nets", make_getter(&Context::nets, return_internal_reference<>()))
- .add_property("cells", make_getter(&Context::cells, return_internal_reference<>()));
+ class_<BaseCtx, BaseCtx *, boost::noncopyable>("BaseCtx", no_init);
+ //.add_property("nets", make_getter(&Context::nets, return_internal_reference<>()))
+ //.add_property("cells", make_getter(&Context::cells, return_internal_reference<>()));
// WRAP_MAP_UPTR(decltype(Context::nets), "IdNetMap");
// WRAP_MAP_UPTR(decltype(Context::cells), "IdCellMap");