tools: update gyp-next to 0.19.1 · nodejs/node@e9092b1 · GitHub
Skip to content

Commit e9092b1

Browse files
addaleaxpull[bot]
authored andcommitted
tools: update gyp-next to 0.19.1
PR-URL: #56111 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 757c8a2 commit e9092b1

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

tools/gyp/CHANGELOG.md

Lines changed: 7 additions & 0 deletions

tools/gyp/pylib/gyp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def EscapeForCString(string: bytes | str) -> str:
2929
string = string.encode(encoding='utf8')
3030

3131
backslash_or_double_quote = {ord('\\'), ord('"')}
32-
result = []
32+
result = ''
3333
for char in string:
3434
if char in backslash_or_double_quote or not 32 <= char < 127:
3535
result += '\\%03o' % char

tools/gyp/pyproject.toml

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)