python 2to3 修复程序的 PATTERN 字符串中的文字参数存在问题

发布于 2024-08-27 21:16:47 字数 301 浏览 11 评论 0原文

我正在用 python 编写 2to3 工具的修复程序。

在我的模式字符串中,我有一个部分想要匹配一个空字符串作为参数,或者一个空的 unicode 字符串。我的模式的相关部分如下所示:

(args='""' | args='u""')

我的问题是第二个选项永远不匹配。即使是单独的,也不会匹配。但是,如果我简单地说 args=any 然后输出 args,我可以捕获 args 完全等于第二个选项的情况。

是否发生了一些奇怪的 unicode 处理事情?为什么第二个文字选项永远不会匹配?

I'm writing a fixer for the 2to3 tool in python.

In my pattern string, I have a section where I'd like to match an empty string as an argument, or an empty unicode string. The relevant chunk of my pattern looks like:

(args='""' | args='u""')

My issue is the second option never matches. Even if it's alone, it won't match. However, if I simply say args=any and then output args, I can catch cases where args is exactly equal to the second option.

Is there some weird unicode handling thing going on? Why won't the second literal option ever match?

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

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

发布评论

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

评论(1

我最亲爱的 2024-09-03 21:16:47

由于 2to3 模式匹配旨在匹配标记而不是文字,因此无法直接执行此操作。

相反,您可以匹配 (args=STRING),然后确定转换函数内字符串参数的值并适当处理它。

Because 2to3 pattern matching is designed to match tokens not literals, there is no way to do this directly.

Instead you could match (args=STRING) and then determine the value of the string argument inside the transformation function and handle it appropriately.

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