[issue23742] expandvars removes single quotes ( ' )

2015-03-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9f4d2bdced9c by Serhiy Storchaka in branch '2.7': Issue #23742: ntpath.expandvars() no longer loses unbalanced single quotes. https://hg.python.org/cpython/rev/9f4d2bdced9c New changeset 613c4bd1c29c by Serhiy Storchaka in branch '3.4': Issue

[issue23742] expandvars removes single quotes ( ' )

2015-03-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23742 ___

[issue23742] expandvars removes single quotes ( ' )

2015-03-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch. -- assignee: - serhiy.storchaka components: +Library (Lib) keywords: +patch stage: needs patch - patch review versions: +Python 2.7 Added file: http://bugs.python.org/file38646/issue23742.patch

[issue23742] expandvars removes single quotes ( ' )

2015-03-22 Thread Manuel Vögele
New submission from Manuel Vögele: When executing os.path.expandvars(%SystemDrive%\\Foo'Bar) the function erases the ' returning 'C:\\FooBar' using Python 3.4.3 on Windows 7 -- components: Library (Lib) messages: 238968 nosy: manuel_v, serhiy.storchaka priority: normal severity:

[issue23742] expandvars removes single quotes ( ' )

2015-03-22 Thread R. David Murray
R. David Murray added the comment: It apparently only loses unbalanced single quotes. -- components: +Windows -Library (Lib) nosy: +r.david.murray, steve.dower, tim.golden, zach.ware stage: - needs patch versions: +Python 3.5 ___ Python tracker