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
8445104d
Kaydet (Commit)
8445104d
authored
Ara 20, 2007
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Drop _PyLong_FitsInLong. Fixes #1666.
üst
704b34d9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
35 deletions
+36
-35
longobject.h
Include/longobject.h
+0
-1
longobject.c
Objects/longobject.c
+0
-13
rangeobject.c
Objects/rangeobject.c
+36
-21
No files found.
Include/longobject.h
Dosyayı görüntüle @
8445104d
...
...
@@ -50,7 +50,6 @@ PyAPI_DATA(int) _PyLong_DigitValue[256];
be multiplied by SHIFT! There may not be enough room in an int to store
e*SHIFT directly. */
PyAPI_FUNC
(
double
)
_PyLong_AsScaledDouble
(
PyObject
*
vv
,
int
*
e
);
PyAPI_FUNC
(
int
)
_PyLong_FitsInLong
(
PyObject
*
vv
);
PyAPI_FUNC
(
double
)
PyLong_AsDouble
(
PyObject
*
);
PyAPI_FUNC
(
PyObject
*
)
PyLong_FromVoidPtr
(
void
*
);
...
...
Objects/longobject.c
Dosyayı görüntüle @
8445104d
...
...
@@ -392,19 +392,6 @@ PyLong_AsLong(PyObject *obj)
return
result
;
}
int
_PyLong_FitsInLong
(
PyObject
*
vv
)
{
int
size
;
if
(
!
PyLong_CheckExact
(
vv
))
{
PyErr_BadInternalCall
();
return
0
;
}
/* conservative estimate */
size
=
Py_SIZE
(
vv
);
return
-
2
<=
size
&&
size
<=
2
;
}
/* Get a Py_ssize_t from a long int object.
Returns -1 and sets an error condition if overflow occurs. */
...
...
Objects/rangeobject.c
Dosyayı görüntüle @
8445104d
...
...
@@ -558,14 +558,23 @@ range_iter(PyObject *seq)
rangeobject
*
r
=
(
rangeobject
*
)
seq
;
longrangeiterobject
*
it
;
PyObject
*
tmp
,
*
len
;
long
lstart
,
lstop
,
lstep
;
assert
(
PyRange_Check
(
seq
));
if
(
_PyLong_FitsInLong
(
r
->
start
)
&&
_PyLong_FitsInLong
(
r
->
stop
)
&&
_PyLong_FitsInLong
(
r
->
step
))
return
int_range_iter
(
PyLong_AsLong
(
r
->
start
),
PyLong_AsLong
(
r
->
stop
),
PyLong_AsLong
(
r
->
step
));
/* If all three fields convert to long, use the int version */
lstart
=
PyLong_AsLong
(
r
->
start
);
if
(
lstart
!=
-
1
||
!
PyErr_Occurred
())
{
lstop
=
PyLong_AsLong
(
r
->
stop
);
if
(
lstop
!=
-
1
||
!
PyErr_Occurred
())
{
lstep
=
PyLong_AsLong
(
r
->
step
);
if
(
lstep
!=
-
1
||
!
PyErr_Occurred
())
return
int_range_iter
(
lstart
,
lstop
,
lstep
);
}
}
/* Some conversion failed, so there is an error set. Clear it,
and try again with a long range. */
PyErr_Clear
();
it
=
PyObject_New
(
longrangeiterobject
,
&
PyLongRangeIter_Type
);
if
(
it
==
NULL
)
...
...
@@ -605,27 +614,33 @@ range_reverse(PyObject *seq)
rangeobject
*
range
=
(
rangeobject
*
)
seq
;
longrangeiterobject
*
it
;
PyObject
*
one
,
*
sum
,
*
diff
,
*
len
=
NULL
,
*
product
;
long
lstart
,
lstop
,
lstep
;
/* XXX(nnorwitz): do the calc for the new start/stop first,
then if they fit, call the proper iter()?
*/
assert
(
PyRange_Check
(
seq
));
if
(
_PyLong_FitsInLong
(
range
->
start
)
&&
_PyLong_FitsInLong
(
range
->
stop
)
&&
_PyLong_FitsInLong
(
range
->
step
))
{
long
start
=
PyLong_AsLong
(
range
->
start
);
long
step
=
PyLong_AsLong
(
range
->
step
);
long
stop
=
PyLong_AsLong
(
range
->
stop
);
/* XXX(nnorwitz): need to check for overflow and simplify. */
long
len
=
get_len_of_range
(
start
,
stop
,
step
);
long
new_start
=
start
+
(
len
-
1
)
*
step
;
long
new_stop
=
start
;
if
(
step
>
0
)
new_stop
-=
1
;
else
new_stop
+=
1
;
return
int_range_iter
(
new_start
,
new_stop
,
-
step
);
/* If all three fields convert to long, use the int version */
lstart
=
PyLong_AsLong
(
range
->
start
);
if
(
lstart
!=
-
1
||
!
PyErr_Occurred
())
{
lstop
=
PyLong_AsLong
(
range
->
stop
);
if
(
lstop
!=
-
1
||
!
PyErr_Occurred
())
{
lstep
=
PyLong_AsLong
(
range
->
step
);
if
(
lstep
!=
-
1
||
!
PyErr_Occurred
())
{
/* XXX(nnorwitz): need to check for overflow and simplify. */
long
len
=
get_len_of_range
(
lstart
,
lstop
,
lstep
);
long
new_start
=
lstart
+
(
len
-
1
)
*
lstep
;
long
new_stop
=
lstart
;
if
(
lstep
>
0
)
new_stop
-=
1
;
else
new_stop
+=
1
;
return
int_range_iter
(
new_start
,
new_stop
,
-
lstep
);
}
}
}
PyErr_Clear
();
it
=
PyObject_New
(
longrangeiterobject
,
&
PyLongRangeIter_Type
);
if
(
it
==
NULL
)
...
...
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