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
6921eca2
Kaydet (Commit)
6921eca2
authored
Şub 18, 2003
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make PyNumber_Check() a bit more careful, since all sorts of things
now have tp_as_number. Check for nb_int or nb_float.
üst
55dc26cb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
NEWS
Misc/NEWS
+8
-0
abstract.c
Objects/abstract.c
+3
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
6921eca2
...
...
@@ -89,6 +89,10 @@ Core and builtins
Extension
modules
-----------------
-
operator
.
isNumberType
()
now
checks
that
the
object
has
a
nb_int
or
nb_float
slot
,
rather
than
simply
checking
whether
it
has
a
non
-
NULL
tp_as_number
pointer
.
-
The
imp
module
now
has
ways
to
acquire
and
release
the
"import
lock"
:
imp
.
acquire_lock
()
and
imp
.
release_lock
().
Note
:
this
is
a
reentrant
lock
,
so
releasing
the
lock
only
truly
releases
it
when
...
...
@@ -318,6 +322,10 @@ Build
C
API
-----
-
PyNumber_Check
()
now
checks
that
the
object
has
a
nb_int
or
nb_float
slot
,
rather
than
simply
checking
whether
it
has
a
non
-
NULL
tp_as_number
pointer
.
-
A
C
type
that
inherits
from
a
base
type
that
defines
tp_as_buffer
will
now
inherit
the
tp_as_buffer
pointer
if
it
doesn
't define one.
(SF #681367)
...
...
Objects/abstract.c
Dosyayı görüntüle @
6921eca2
...
...
@@ -308,7 +308,9 @@ int PyObject_AsWriteBuffer(PyObject *obj,
int
PyNumber_Check
(
PyObject
*
o
)
{
return
o
&&
o
->
ob_type
->
tp_as_number
;
return
o
&&
o
->
ob_type
->
tp_as_number
&&
(
o
->
ob_type
->
tp_as_number
->
nb_int
||
o
->
ob_type
->
tp_as_number
->
nb_float
);
}
/* Binary operators */
...
...
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