Skip to content

Commit 5a723b8

Browse files
committed
win10 上 python3 调试 sys.argv 会忽略空字符串参数
1 parent 9d440f8 commit 5a723b8

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# version 2.19.19
2+
3+
- win10 上 python3 调试 sys.argv 会忽略空字符串参数
4+
15
# version 2.19.18
26

37
- 使用新的 mvc 代码结构修改 statusBar 相关内容

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-leetcode-problem-rating",
33
"displayName": "LeetCode",
44
"description": "%main.description%",
5-
"version": "2.19.18",
5+
"version": "2.19.19",
66
"author": "ccagml",
77
"publisher": "ccagml",
88
"license": "MIT",

src/service/DebugService.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class DebugService {
113113
testString,
114114
problemType.funName,
115115
problemType.paramTypes.join(","),
116-
problemType.returnType || "",
116+
problemType.returnType || "returnType",
117117
meta.id,
118118
(this.server.address() as net.AddressInfo).port.toString(),
119119
];

0 commit comments

Comments
 (0)