[issue12932] dircmp does not allow non-shallow comparisons

2012-05-28 Thread Terry J. Reedy

Terry J. Reedy tjre...@udel.edu added the comment:

Lennart, I saw your response on StackOverflow ;-).

--
nosy: +terry.reedy
resolution: out of date - 
stage: committed/rejected - test needed
status: closed - open
versions: +Python 3.3 -Python 2.6, Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12932
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12932] dircmp does not allow non-shallow comparisons

2012-05-17 Thread Lennart Regebro

Lennart Regebro rege...@gmail.com added the comment:

filecmp is still there in Python 3.3 Alpha 3. I can't find any reference to it 
being deprecated.

--
nosy: +lregebro

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12932
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12932] dircmp does not allow non-shallow comparisons

2012-03-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Thanks for the report.  Unfortunately 2.7 is closed to new features and the 
module is removed in 3.x, so there is nothing to do here.

--
nosy: +eric.araujo
resolution:  - out of date
stage:  - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12932
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12932] dircmp does not allow non-shallow comparisons

2011-09-07 Thread Kevin Smith

New submission from Kevin Smith kevin.sm...@sixquickrun.com:

While filecmp.cmp and filecmp.cmpfiles allow a shallow option to be specified 
to invoke a more involved comparison of files, filecmp.dircmp does not.  It is 
limited to shallow-only comparisons.  

This could be solved quite easily by adding a shallow keyword option to dircmp 
then changing the phase3 method to the following.

def phase3(self): # Find out differences between common files
xx = cmpfiles(self.left, self.right, self.common_files, self.shallow)
self.same_files, self.diff_files, self.funny_files = xx

--
components: Library (Lib)
messages: 143692
nosy: kesmit
priority: normal
severity: normal
status: open
title: dircmp does not allow non-shallow comparisons
type: feature request
versions: Python 2.6, Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12932
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com