NetLogo / NetLogo/Python-Extension
Dicts with non-string keys get serialized wrong
未关闭
还没有人认领这个 Issue。
- 主要语言
- Scala
- 星标
- 31
- 派生
- 16
- PR 合并指标
- 30 天内没有已合并 PR
描述
Copied from with more discussion at: https://github.com/qiemem/PythonExtension/issues/6
Some examples:
observershow py:runresult "{1: 2}"
observer: [["1" 2]]
observershow py:runresult "{(1,2): 3}"
Extension exception: keys must be a string
While JSON is restricted to string keys, we are not. We need to hijack JSON's dict serialization to turn them into a list of pairs instead.
贡献指南
这个仓库没有索引到贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先跟踪 Python extension 如何处理 py:runresult 示例,以及字典在哪里经过 JSON 序列化传递。复现 {1: 2} 和 {(1,2): 3} 这两种情况,然后验证非字符串键字典是否会序列化为成对元素的列表,而不会产生当前不正确的输出或异常。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python, scala
- 领域
- tooling
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 38/100