Fabric 任务的名称是否可以是无效的 Python 函数名称?
我希望我的 Fabric 任务包含连字符 (-) 而不是下划线 (_)。例如,database-reset 而不是database_reset。但是,不允许使用连字符作为 Python 函数名称。
Fabric 中是否可以创建名称与相应 Python 函数不完全匹配的任务?
I'd like my Fabric tasks to have hyphens (-) instead of underscores (_). For example, database-reset instead of database_reset. However, hyphens aren't permitted as Python function names.
Is it possible in Fabric to create tasks whose names do not exactly match the corresponding Python function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自文档:
From the documentation:
Cat Plus Plus 可为您提供最佳解决方案。然而,从技术上讲,通过分配给
globals()
字典,Python 全局变量(函数名只是一个全局变量)可能不符合通常的规则。不过,语法不是很好,这使得它相当麻烦。
Cat Plus Plus has the best solution to what you want to do. Tangentially, however, it is technically possible to have Python global variables (a function name is just a global variable) that don't conform to the usual rules by assigning to the
globals()
dictionary.The syntax is not very nice, though, making it quite the hassle.