问题标签 [class-pattern]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
1 问题
0
投票
1
回答
5
浏览
python - 类模式匹配错误的情况
我正在编写一个对象序列化程序,但遇到类模式与预期情况不匹配的问题:
当我用一个元组调用dump_obj()时,它会在 I-case 上为 iterables 提供无限递归,而不是匹配 T-case 的元组。
当我用列表子类调用dump_obj()时,它匹配列表的 L-case 而不是 iterables 的预期 I-case。