8000 pythonbuild: use raw string literal · adiantek/python-build-standalone@5bfece4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5bfece4

Browse files
committed
pythonbuild: use raw string literal
Saw this warning in my IDE when looking at the source.
1 parent 98567d4 commit 5bfece4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythonbuild/cpython.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ def derive_setup_local(
212212

213213
dest_lines.append(line)
214214

215-
RE_DEFINE = re.compile(b"-D[^=]+=[^\s]+")
216-
RE_VARIANT = re.compile(b"VARIANT=([^\s]+)\s")
215+
RE_DEFINE = re.compile(br"-D[^=]+=[^\s]+")
216+
RE_VARIANT = re.compile(br"VARIANT=([^\s]+)\s")
217217

218218
seen_variants = set()
219219

0 commit comments

Comments
 (0)
0