asda?‰PNG  IHDR ? f ??C1 sRGB ??é gAMA ±? üa pHYs ? ??o¨d GIDATx^íüL”÷e÷Y?a?("Bh?_ò???¢§?q5k?*:t0A-o??¥]VkJ¢M??f?±8\k2íll£1]q?ù???T a d('@sdZddlZddlZddlmZddlmZgdZiZdZ gdZ dd Z dd d Z d dZ ddZGdddZdddZee fddZddZddZedkredS)zUtilities for comparing files and directories. Classes: dircmp Functions: cmp(f1, f2, shallow=True) -> int cmpfiles(a, b, common) -> ([], [], []) clear_cache() N) filterfalse) GenericAlias) clear_cachecmpdircmpcmpfilesDEFAULT_IGNORESi )ZRCSZCVStagsz.gitz.hgz.bzrZ_darcs __pycache__cCs tdS)zClear the filecmp cache.N)_cacheclearr r %/usr/src/Python-3.9.18/Lib/filecmp.pyrsrTcCstt|}tt|}|dtjks8|dtjkr prints a report on the differences between dir1 and dir2 or x.report_partial_closure() -> prints report on differences between dir1 and dir2, and reports on common immediate subdirectories. x.report_full_closure() -> like report_partial_closure, but fully recursive. Attributes: left_list, right_list: The files in dir1 and dir2, filtered by hide and ignore. common: a list of names in both dir1 and dir2. left_only, right_only: names only in dir1, dir2. common_dirs: subdirectories in both dir1 and dir2. common_files: files in both dir1 and dir2. common_funny: names in both dir1 and dir2 where the type differs between dir1 and dir2, or the name is not stat-able. same_files: list of identical files. diff_files: list of filenames which differ. funny_files: list of files which could not be compared. subdirs: a dictionary of dircmp objects, keyed by names in common_dirs. NcCsD||_||_|dur$tjtjg|_n||_|dur:t|_n||_dSr)leftrightrcurdirpardirhiderignore)selfabr2r1r r r__init__zszdircmp.__init__cCsPtt|j|j|j|_tt|j|j|j|_|j |j dSr) _filterrlistdirr-r1r2 left_listr. right_listsortr3r r rphase0s     z dircmp.phase0cCsttttjj|j|j}ttttjj|j|j}tt|j t |j ||_ tt|j t |j ||_tt|j t |j ||_dSr)dictzipmaprpathnormcaser9r:list __getitem__filter __contains__commonr left_only right_only)r3r4r5r r rphase1s z dircmp.phase1c Csg|_g|_g|_|jD]}tj|j|}tj|j|}d}zt |}Wnt ydd}Yn0zt |}Wnt yd}Yn0|rt |j }t |j }||kr|j |nrgrk classmethodr__class_getitem__r r r rrXs&! # rcCsJgggf}|D]6}tj||}tj||}|t||||q|S)a]Compare common files in two directories. a, b -- directory names common -- list of file names found in both directories shallow -- if true, do comparison based solely on stat() information Returns a tuple of three lists: files that compare equal files that are different filenames that aren't regular files. )rrArN_cmprP)r4r5rGrresrSZaxZbxr r rrs rcCs.z||||| WSty(YdS0dS)N)rO)r4r5shabsrr r rrrs rrcCstt|j|Sr)rCrrF)flistskipr r rr7#sr7cCsrddl}ddl}||jddd\}}t|dkrB|ddt|d|d}d|vrf|n|dS)Nrrrrtzneed exactly two args)z-r)sysgetoptargvr GetoptErrorrrfrd)r{r|optionsargsddr r rdemo)s   r__main__)T)T)rorr itertoolsrtypesr__all__r r%rrrrrrrrvrrr7rrlr r r rs(    ( (