This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author hanwen
Recipients
Date 2006-05-03.20:16:33
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
In Makefiles, a $$ should expand into a literal $ 
distutils.sysconfig doesn't deal with this.

>>> print open('a.make').read ()

FOO	= $${bar} bla bla

>>> sysconfig.parse_makefile ('a.make')
{'FOO': '$ bla bla', 'bar': ''}


History
Date User Action Args
2008-01-20 09:58:41adminlinkissue1481347 messages
2008-01-20 09:58:41admincreate