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
673770c5
Kaydet (Commit)
673770c5
authored
May 09, 2013
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 16584: in filecomp._cmp, catch IOError as well as os.error.
Patch by Till Maas.
üst
db03e6b8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
filecmp.py
Lib/filecmp.py
+1
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/filecmp.py
Dosyayı görüntüle @
673770c5
...
@@ -268,7 +268,7 @@ def cmpfiles(a, b, common, shallow=1):
...
@@ -268,7 +268,7 @@ def cmpfiles(a, b, common, shallow=1):
def
_cmp
(
a
,
b
,
sh
,
abs
=
abs
,
cmp
=
cmp
):
def
_cmp
(
a
,
b
,
sh
,
abs
=
abs
,
cmp
=
cmp
):
try
:
try
:
return
not
abs
(
cmp
(
a
,
b
,
sh
))
return
not
abs
(
cmp
(
a
,
b
,
sh
))
except
os
.
error
:
except
(
os
.
error
,
IOError
)
:
return
2
return
2
...
...
Misc/ACKS
Dosyayı görüntüle @
673770c5
...
@@ -626,6 +626,7 @@ Mark Lutz
...
@@ -626,6 +626,7 @@ Mark Lutz
Jim Lynch
Jim Lynch
Mikael Lyngvig
Mikael Lyngvig
Martin von Löwis
Martin von Löwis
Till Maas
Jeff MacDonald
Jeff MacDonald
John Machin
John Machin
Andrew I MacIntyre
Andrew I MacIntyre
...
...
Misc/NEWS
Dosyayı görüntüle @
673770c5
...
@@ -26,6 +26,9 @@ Core and Builtins
...
@@ -26,6 +26,9 @@ Core and Builtins
Library
Library
-------
-------
-
Issue
16584
:
in
filecomp
.
_cmp
,
catch
IOError
as
well
as
os
.
error
.
Patch
by
Till
Maas
.
-
Issue
#
17926
:
Fix
dbm
.
__contains__
on
64
-
bit
big
-
endian
machines
.
-
Issue
#
17926
:
Fix
dbm
.
__contains__
on
64
-
bit
big
-
endian
machines
.
-
Issue
#
17918
:
When
using
SSLSocket
.
accept
(),
if
the
SSL
handshake
failed
-
Issue
#
17918
:
When
using
SSLSocket
.
accept
(),
if
the
SSL
handshake
failed
...
...
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