[issue1702551] distutils sdist does not exclude SVN/CVS files on Windows

2009-01-03 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Tarek, I don't know if you are already subscribed to the python-checkins mailing list -- I've reviewed the commit and posted a reply with a minor problem there. -- nosy: +georg.brandl ___ Python

[issue1702551] distutils sdist does not exclude SVN/CVS files on Windows

2009-01-03 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: Georg, I think I am supposed to be registered since a few days but I don't receive any mail yet. I'll ask... I didn't use a raw string because '\.' is not an escape sequence, so: '\.svn' == '\\.svn' and '\.svn' == r'\.svn' True

[issue1702551] distutils sdist does not exclude SVN/CVS files on Windows

2008-12-31 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: I have put this ticket in my pile. I will write the test to demonstrate the problem and get back to your patch proposal. As Christian said, both separator should be taken care of under Windows, so the final regexp will be slighly different.

[issue1702551] distutils sdist does not exclude SVN/CVS files on Windows

2008-03-14 Thread Ralf Schmitt
Changes by Ralf Schmitt [EMAIL PROTECTED]: -- nosy: +schmir _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1702551 _ ___ Python-bugs-list mailing list

[issue1702551] distutils sdist does not exclude SVN/CVS files on Windows

2008-01-11 Thread Christian Heimes
Christian Heimes added the comment: The code should use \ and / on Windows. -- nosy: +tiran type: - behavior versions: +Python 2.6 -Python 2.5 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1702551 _