We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33f32d6 commit 9e15770Copy full SHA for 9e15770
Lib/test/test_sysconfig.py
@@ -770,6 +770,7 @@ def test_parse_makefile(self):
770
print("var8=$$(var3)", file=makefile)
771
print("var9=$(var10)(var3)", file=makefile)
772
print("var10=$$", file=makefile)
773
+ print("var11=$${ORIGIN}${var5}", file=makefile)
774
vars = _parse_makefile(TESTFN)
775
self.assertEqual(vars, {
776
'var1': 'ab42',
@@ -782,6 +783,7 @@ def test_parse_makefile(self):
782
783
'var8': '$(var3)',
784
'var9': '$(var3)',
785
'var10': '$',
786
+ 'var11': '${ORIGIN}dollar$5',
787
})
788
789
def _test_parse_makefile_recursion(self):
0 commit comments