[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2014-03-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2b1d5caf63ca by R David Murray in branch 'default': whatsnew: filecmp.DEFAULT_IGNORES (#15442) http://hg.python.org/cpython/rev/2b1d5caf63ca -- ___ Python tracker

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2013-01-12 Thread Eli Bendersky
Eli Bendersky added the comment: What? Where did you see 3.3? It says 3.4 ;-) Thanks, fixed in 72ddb250f058 -- ___ Python tracker ___ ___

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2013-01-12 Thread Éric Araujo
Éric Araujo added the comment: + .. versionadded:: 3.3 3.4* -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2013-01-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset a1efab48d8f8 by Eli Bendersky in branch 'default': Close #15442: Expand the list of default directories ignored by filecmp.dircmp and expose it as a module attribute http://hg.python.org/cpython/rev/a1efab48d8f8 -- nosy: +python-dev resolut

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2013-01-10 Thread Eli Bendersky
Eli Bendersky added the comment: Attaching an alternative patch, that goes one (little) step further. Instead of repeating the ignored list all over the place (code, docstrings, ReST docs), the module exposes DEFAULT_IGNORES so everything can refer to it. Also added some tests for this feature

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2013-01-08 Thread Éric Araujo
Éric Araujo added the comment: > Should __pycache__ be ignored too? Sounds good. > I don't know how to compile python without having to install it See the devguide http://docs.python.org/devguide -- stage: needs patch -> test needed ___ Python tracke

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2013-01-07 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2013-01-07 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: -serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2012-10-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Should __pycache__ be ignored too? -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bu

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2012-10-15 Thread moijes12
moijes12 added the comment: Yeah. I'm on it. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2012-10-15 Thread Eli Bendersky
Eli Bendersky added the comment: I tend to agree with Éric here. moijes12, would you like to send an updated patch without the raw literals, and with added tests for the new/changed functionality? -- ___ Python tracker

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2012-10-14 Thread Éric Araujo
Éric Araujo added the comment: ISTM the names should be regular names, not regular expression patterns. -- nosy: +eric.araujo ___ Python tracker ___ _

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2012-10-14 Thread Eli Bendersky
Eli Bendersky added the comment: moijes12, why are the added names "raw" ? -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2012-08-24 Thread R. David Murray
R. David Murray added the comment: moijes12, thanks for the patch. Since this is a new feature we'll need to wait until the 3.3 RC1 repo is branched before applying it. -- nosy: +r.david.murray ___ Python tracker

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2012-08-23 Thread Chris Jerdonek
Chris Jerdonek added the comment: Hi moijes12, for instructions on compiling and submitting patches, etc., see the Python Developer's Guide (aka the devguide). You may also be interested in the Python Mentors Group: http://pythonmentors.com/ Lastly (a small point), in the future you can also

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2012-08-23 Thread moijes12
Changes by moijes12 : -- keywords: +patch Added file: http://bugs.python.org/file26971/15442.patch ___ Python tracker ___ ___ Python-b

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2012-08-23 Thread moijes12
Changes by moijes12 : -- nosy: +moijes12 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue15442] Expand the list of default dirs filecmp.dircmp ignores

2012-07-24 Thread Eli Bendersky
New submission from Eli Bendersky : The default ignore list of filecmp.dircmp is ['RCS', 'CVS', 'tags']. This predates even Subversion! I suggest to freshen up this module to also ignore the dirs for SVN, Mercurial, Git and Bazaar. [this is a new feature, so no earlier than 3.4...] -