diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2024-12-10 12:27:25 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2024-12-10 12:27:25 (GMT) |
commit | 01c72e2f339f9cda8a8f08748ed591276a7aaa99 (patch) | |
tree | cd5e12b3d0deb7f5fd4f27ebf4d2de4b9a1a25c6 /plugins/pychrysalide/glibext/module.c | |
parent | a07282d2f96ad99c9e280f139a63757b34a23695 (diff) |
Implement a toString()-like interface.
Diffstat (limited to 'plugins/pychrysalide/glibext/module.c')
-rw-r--r-- | plugins/pychrysalide/glibext/module.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/pychrysalide/glibext/module.c b/plugins/pychrysalide/glibext/module.c index d913d92..77e0c76 100644 --- a/plugins/pychrysalide/glibext/module.c +++ b/plugins/pychrysalide/glibext/module.c @@ -42,6 +42,7 @@ */ #include "portion.h" #include "singleton.h" +#include "strbuilder.h" #include "work.h" #include "workqueue.h" #include "../helpers.h" @@ -111,6 +112,7 @@ bool populate_glibext_module(void) result = true; if (result) result = ensure_python_singleton_candidate_is_registered(); + if (result) result = ensure_python_string_builder_is_registered(); if (result) result = ensure_python_binary_portion_is_registered(); if (result) result = ensure_python_generic_work_is_registered(); |