考虑过 Traits 名称的局限性吗?

发布于 2024-11-15 10:49:09 字数 345 浏览 3 评论 0原文

我在尝试构建依赖于 Matplotlib 的 Traits GUI 时遇到了一个奇怪的问题。总结一下:如果,在此处的示例中: http://www.scipy.org/Cookbook/EmbeddingInTraitsGUI< /a>,如果我将“figure”特征的名称(我认为这只是一个我可以按照我想要的方式命名的属性)的名称替换为“figu”,我会收到以下错误: “创建自定义编辑器时发生错误。请联系开发人员。”

我做错了什么,或者该限制是否记录在某处?

提前致谢。

I ran into a weird problem while trying to build a Traits GUI that relies on Matplotlib. To summarize it: if, in the example here: http://www.scipy.org/Cookbook/EmbeddingInTraitsGUI, if I replace everywhere the name of the "figure" trait (which, I thought, was just a property I could name the way I want) by, e.g., "figu", I get the following error: "An error occured creating a custom editor. Please contact the developer."

Am I doing something wrong, or is that limitation documented somewhere?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伪心 2024-11-22 10:49:09

您是否记得将 MakePlot 函数中的行从 更改

fig = editor.object.figure

fig = editor.object.figu

Did you remember to change the line in the MakePlot function from

fig = editor.object.figure

to

fig = editor.object.figu
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文