Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
c7b5b3c9
Kaydet (Commit)
c7b5b3c9
authored
Eki 29, 1999
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
filecmp documentation from Moshe Zadka <moshez@math.huji.ac.il>.
üst
7eaf6828
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
libfilecmp.tex
Doc/lib/libfilecmp.tex
+40
-0
No files found.
Doc/lib/libfilecmp.tex
0 → 100644
Dosyayı görüntüle @
c7b5b3c9
\section
{
\module
{
filecmp
}
---
File Comparisons
}
\declaremodule
{
standard
}{
filecmp
}
\sectionauthor
{
Moshe Zadka
}{
mzadka@geocities.com
}
\modulesynopsis
{
Compare files efficiently.
}
The
\module
{
filecmp
}
module defines a function to compare files, taking all
sort of short-cuts to make it a highly efficient operation.
The
\module
{
filecmp
}
module defines the following function:
\begin{funcdesc}
{
cmp
}{
f1, f2
\optional
{
, shallow
\optional
{
, use
_
statcache
}}}
Compare the files named
\var
{
f1
}
and
\var
{
f2
}
, returning
\code
{
1
}
if they seem equal,
\code
{
0
}
otherwise.
Unless
\var
{
shallow
}
is given and is false, files with identical
\function
{
os.stat()
}
signatures are taken to be equal. If
\var
{
use
_
statcache
}
is given and is true,
\function
{
statcache.stat()
}
will be called rather then
\var
{
os.stat()
}
.
Files that were compared using this function will not be compared again
unless their
\function
{
os.stat()
}
signature changes. Note that using
\var
{
use
_
statcache
}
true will cause the cache invalidation mechanism to
fail --- the stale stat value will be used from
\refmodule
{
statcache
}
's
cache.
Note that no external programs are called from this module giving it
portability and efficiency.
\end{funcdesc}
Example:
\begin{verbatim}
>>> import filecmp
>>> filecmp.cmp('libundoc.tex', 'libundoc.tex')
1
>>> filecmp.cmp('libundoc.tex', 'lib.tex')
0
\end{verbatim}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment