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
ab1049c0
Kaydet (Commit)
ab1049c0
authored
Agu 08, 2006
tarafından
Thomas Heller
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
memcmp() can return values other than -1, 0, and +1 but tp_compare
must not.
üst
b0061c8e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
test_types.py
Lib/test/test_types.py
+3
-0
NEWS
Misc/NEWS
+2
-0
bufferobject.c
Objects/bufferobject.c
+1
-1
No files found.
Lib/test/test_types.py
Dosyayı görüntüle @
ab1049c0
...
...
@@ -233,6 +233,9 @@ print 'Buffers'
try
:
buffer
(
'asdf'
,
-
1
)
except
ValueError
:
pass
else
:
raise
TestFailed
,
"buffer('asdf', -1) should raise ValueError"
cmp
(
buffer
(
"abc"
),
buffer
(
"def"
))
# used to raise a warning: tp_compare didn't return -1, 0, or 1
cmp
(
buffer
(
'abc'
),
buffer
(
'def'
))
try
:
buffer
(
None
)
except
TypeError
:
pass
...
...
Misc/NEWS
Dosyayı görüntüle @
ab1049c0
...
...
@@ -12,6 +12,8 @@ What's New in Python 2.5 release candidate 1?
Core and builtins
-----------------
- Bug #1536786: buffer comparison could emit a RuntimeWarning.
- Bug #1535165: fixed a segfault in input() and raw_input() when
sys.stdin is closed.
...
...
Objects/bufferobject.c
Dosyayı görüntüle @
ab1049c0
...
...
@@ -272,7 +272,7 @@ buffer_compare(PyBufferObject *self, PyBufferObject *other)
if
(
min_len
>
0
)
{
cmp
=
memcmp
(
p1
,
p2
,
min_len
);
if
(
cmp
!=
0
)
return
cmp
;
return
cmp
<
0
?
-
1
:
1
;
}
return
(
len_self
<
len_other
)
?
-
1
:
(
len_self
>
len_other
)
?
1
:
0
;
}
...
...
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