Home
last modified time | relevance | path

Searched refs:dircmp (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Doc/library/
Dfilecmp.rst65 The :class:`dircmp` class
68 :class:`dircmp` instances are built using this constructor:
71 .. class:: dircmp(a, b[, ignore[, hide]])
78 The :class:`dircmp` class compares files by doing *shallow* comparisons
81 The :class:`dircmp` class provides the following methods:
100 The :class:`dircmp` class offers a number of interesting attributes that may be
179 A dictionary mapping names in :attr:`common_dirs` to :class:`dircmp` objects.
185 >>> from filecmp import dircmp
193 >>> dcmp = dircmp('dir1', 'dir2') # doctest: +SKIP
/external/python/cpython2/Lib/test/
Dtest_filecmp.py101 d = filecmp.dircmp(self.dir, self.dir_same)
112 d = filecmp.dircmp(self.dir, self.dir_diff)
125 d = filecmp.dircmp(self.dir, self.dir_diff)
/external/python/cpython2/Lib/
Dfilecmp.py77 class dircmp: class
185 self.subdirs[x] = dircmp(a_x, b_x, self.ignore, self.hide)
289 dd = dircmp(args[0], args[1])
/external/skia/infra/bots/
Dtest_utils.py73 _cmp('', filecmp.dircmp(a, b))
/external/python/cpython2/Doc/whatsnew/
D2.0.rst1090 :mod:`dircmp` modules, which have now become deprecated. (Contributed by Gordon
1191 :mod:`cmp`, :mod:`cmpcache`, :mod:`dircmp`, :mod:`dump`, :mod:`find`,
D2.5.rst1511 such as :mod:`dircmp` and :mod:`ni`, was removed. :file:`lib-old` wasn't on the
/external/python/cpython2/Misc/
Dcheatsheet1871 [DEL:dircmp:DEL] [DEL:Defines a class to build directory diff tools on.:DEL]
DHISTORY1373 Para, addpack, cmp, cmpcache, codehack, dircmp, dump, find, fmt, grep,
9412 filecmp - supersedes the old cmp.py and dircmp.py modules.
9489 cmp, cmpcache, dircmp. (Replaced by filecmp.)
DNEWS4179 - Issue #15250: Document that filecmp.dircmp compares files shallowly. Patch