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
4885f49e
Kaydet (Commit)
4885f49e
authored
Şub 02, 2014
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
whatsnew: filecmp.clear_cache, and reword description of cache in docs.
üst
70e04f5f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
6 deletions
+17
-6
filecmp.rst
Doc/library/filecmp.rst
+4
-4
3.4.rst
Doc/whatsnew/3.4.rst
+11
-0
filecmp.py
Lib/filecmp.py
+2
-2
No files found.
Doc/library/filecmp.rst
Dosyayı görüntüle @
4885f49e
...
...
@@ -28,8 +28,8 @@ The :mod:`filecmp` module defines the following functions:
portability and efficiency.
This function uses a cache for past comparisons and the results,
with
a cache invalidation mechanism relying on stale signatures
or by explicitly call
ing :func:`clear_cache`.
with
cache entries invalidated if the :func:`os.stat` information for the
file changes. The entire cache may be cleared us
ing :func:`clear_cache`.
.. function:: cmpfiles(dir1, dir2, common, shallow=True)
...
...
@@ -54,12 +54,12 @@ The :mod:`filecmp` module defines the following functions:
.. function:: clear_cache()
.. versionadded:: 3.4
Clear the filecmp cache. This may be useful if a file is compared so quickly
after it is modified that it is within the mtime resolution of
the underlying filesystem.
.. versionadded:: 3.4
.. _dircmp-objects:
...
...
Doc/whatsnew/3.4.rst
Dosyayı görüntüle @
4885f49e
...
...
@@ -675,6 +675,17 @@ handling).
(Contributed by R. David Murray in :issue:`18891`.)
filecmp
-------
A new :func:`~filecmp.clear_cache` function provides the ability to clear the
:mod:`filecmp` comparison cache, which uses :func:`os.stat` information to
determine if the file has changed since the last compare. This can be used,
for example, if the file might have been changed and re-checked in less time
than the resolution of a particular filesystem's file modification time field.
(Contributed by Mark Levitt in :issue:`18149`.)
functools
---------
...
...
Lib/filecmp.py
Dosyayı görüntüle @
4885f49e
...
...
@@ -43,8 +43,8 @@ def cmp(f1, f2, shallow=True):
True if the files are the same, False otherwise.
This function uses a cache for past comparisons and the results,
with
a cache invalidation mechanism relying on stale signatures
or by explicitl
y calling clear_cache().
with
cache entries invalidated if their stat information
changes. The cache may be cleared b
y calling clear_cache().
"""
...
...
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