Skip to content

Commit 5b2cb9c

Browse files
committed
Avoid warning about uninitialized value in MSVC python3 tests
Juan José Santamaría Flecha Backpatch to all live branches
1 parent 3a69d45 commit 5b2cb9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/msvc/vcregress.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ sub mangle_plpython3
313313
s/([ [{])u'/$1'/g;
314314
s/def next/def __next__/g;
315315
s/LANGUAGE plpython2?u/LANGUAGE plpython3u/g;
316-
s/EXTENSION ([^ ]*_)*plpython2?u/EXTENSION $1plpython3u/g;
316+
s/EXTENSION (\S*?)plpython2?u/EXTENSION $1plpython3u/g;
317317
s/installing required extension "plpython2u"/installing required extension "plpython3u"/g;
318318
}
319319
for ($contents);

0 commit comments

Comments
 (0)