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
243d8a78
Kaydet (Commit)
243d8a78
authored
Tem 17, 2016
tarafından
Stefan Krah
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.5.
üst
caaf53e7
8c126f17
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
79 additions
and
8 deletions
+79
-8
test_decimal.py
Lib/test/test_decimal.py
+28
-0
_decimal.c
Modules/_decimal/_decimal.c
+51
-8
No files found.
Lib/test/test_decimal.py
Dosyayı görüntüle @
243d8a78
...
...
@@ -5431,6 +5431,34 @@ class CWhitebox(unittest.TestCase):
y
=
Decimal
(
10
**
(
9
*
25
))
.
__sizeof__
()
self
.
assertEqual
(
y
,
x
+
4
)
def
test_internal_use_of_overridden_methods
(
self
):
Decimal
=
C
.
Decimal
# Unsound subtyping
class
X
(
float
):
def
as_integer_ratio
(
self
):
return
1
def
__abs__
(
self
):
return
self
class
Y
(
float
):
def
__abs__
(
self
):
return
[
1
]
*
200
class
I
(
int
):
def
bit_length
(
self
):
return
[
1
]
*
200
class
Z
(
float
):
def
as_integer_ratio
(
self
):
return
(
I
(
1
),
I
(
1
))
def
__abs__
(
self
):
return
self
for
cls
in
X
,
Y
,
Z
:
self
.
assertEqual
(
Decimal
.
from_float
(
cls
(
101.1
)),
Decimal
.
from_float
(
101.1
))
@requires_docstrings
@unittest.skipUnless
(
C
,
"test requires C version"
)
class
SignatureTest
(
unittest
.
TestCase
):
...
...
Modules/_decimal/_decimal.c
Dosyayı görüntüle @
243d8a78
...
...
@@ -2207,6 +2207,14 @@ PyDecType_FromLongExact(PyTypeObject *type, const PyObject *pylong,
return
dec
;
}
/* External C-API functions */
static
binaryfunc
_py_long_multiply
;
static
binaryfunc
_py_long_floor_divide
;
static
ternaryfunc
_py_long_power
;
static
unaryfunc
_py_float_abs
;
static
PyCFunction
_py_long_bit_length
;
static
PyCFunction
_py_float_as_integer_ratio
;
/* Return a PyDecObject or a subtype from a PyFloatObject.
Conversion is exact. */
static
PyObject
*
...
...
@@ -2257,13 +2265,13 @@ PyDecType_FromFloatExact(PyTypeObject *type, PyObject *v,
}
/* absolute value of the float */
tmp
=
PyObject_CallMethod
(
v
,
"__abs__"
,
NULL
);
tmp
=
_py_float_abs
(
v
);
if
(
tmp
==
NULL
)
{
return
NULL
;
}
/* float as integer ratio: numerator/denominator */
n_d
=
PyObject_CallMethod
(
tmp
,
"as_integer_ratio"
,
NULL
);
n_d
=
_py_float_as_integer_ratio
(
tmp
,
NULL
);
Py_DECREF
(
tmp
);
if
(
n_d
==
NULL
)
{
return
NULL
;
...
...
@@ -2271,7 +2279,7 @@ PyDecType_FromFloatExact(PyTypeObject *type, PyObject *v,
n
=
PyTuple_GET_ITEM
(
n_d
,
0
);
d
=
PyTuple_GET_ITEM
(
n_d
,
1
);
tmp
=
PyObject_CallMethod
(
d
,
"bit_length"
,
NULL
);
tmp
=
_py_long_bit_length
(
d
,
NULL
);
if
(
tmp
==
NULL
)
{
Py_DECREF
(
n_d
);
return
NULL
;
...
...
@@ -3397,7 +3405,6 @@ dec_as_integer_ratio(PyObject *self, PyObject *args UNUSED)
mpd_ssize_t
exp
;
PyObject
*
context
;
uint32_t
status
=
0
;
PyNumberMethods
*
long_methods
=
PyLong_Type
.
tp_as_number
;
if
(
mpd_isspecial
(
MPD
(
self
)))
{
if
(
mpd_isnan
(
MPD
(
self
)))
{
...
...
@@ -3444,14 +3451,14 @@ dec_as_integer_ratio(PyObject *self, PyObject *args UNUSED)
goto
error
;
}
Py_SETREF
(
exponent
,
long_methods
->
nb
_power
(
tmp
,
exponent
,
Py_None
));
Py_SETREF
(
exponent
,
_py_long
_power
(
tmp
,
exponent
,
Py_None
));
Py_DECREF
(
tmp
);
if
(
exponent
==
NULL
)
{
goto
error
;
}
if
(
exp
>=
0
)
{
Py_SETREF
(
numerator
,
long_methods
->
nb
_multiply
(
numerator
,
exponent
));
Py_SETREF
(
numerator
,
_py_long
_multiply
(
numerator
,
exponent
));
if
(
numerator
==
NULL
)
{
goto
error
;
}
...
...
@@ -3467,8 +3474,8 @@ dec_as_integer_ratio(PyObject *self, PyObject *args UNUSED)
if
(
tmp
==
NULL
)
{
goto
error
;
}
Py_SETREF
(
numerator
,
long_methods
->
nb
_floor_divide
(
numerator
,
tmp
));
Py_SETREF
(
denominator
,
long_methods
->
nb
_floor_divide
(
denominator
,
tmp
));
Py_SETREF
(
numerator
,
_py_long
_floor_divide
(
numerator
,
tmp
));
Py_SETREF
(
denominator
,
_py_long
_floor_divide
(
denominator
,
tmp
));
Py_DECREF
(
tmp
);
if
(
numerator
==
NULL
||
denominator
==
NULL
)
{
goto
error
;
...
...
@@ -5611,6 +5618,32 @@ static struct int_constmap int_constants [] = {
#define CHECK_PTR(expr) \
do { if ((expr) == NULL) goto error; } while (0)
static
PyCFunction
cfunc_noargs
(
PyTypeObject
*
t
,
const
char
*
name
)
{
struct
PyMethodDef
*
m
;
if
(
t
->
tp_methods
==
NULL
)
{
goto
error
;
}
for
(
m
=
t
->
tp_methods
;
m
->
ml_name
!=
NULL
;
m
++
)
{
if
(
strcmp
(
name
,
m
->
ml_name
)
==
0
)
{
if
(
!
(
m
->
ml_flags
&
METH_NOARGS
))
{
goto
error
;
}
return
m
->
ml_meth
;
}
}
error:
PyErr_Format
(
PyExc_RuntimeError
,
"internal error: could not find method %s"
,
name
);
return
NULL
;
}
PyMODINIT_FUNC
PyInit__decimal
(
void
)
{
...
...
@@ -5635,6 +5668,16 @@ PyInit__decimal(void)
mpd_setminalloc
(
_Py_DEC_MINALLOC
);
/* Init external C-API functions */
_py_long_multiply
=
PyLong_Type
.
tp_as_number
->
nb_multiply
;
_py_long_floor_divide
=
PyLong_Type
.
tp_as_number
->
nb_floor_divide
;
_py_long_power
=
PyLong_Type
.
tp_as_number
->
nb_power
;
_py_float_abs
=
PyFloat_Type
.
tp_as_number
->
nb_absolute
;
ASSIGN_PTR
(
_py_float_as_integer_ratio
,
cfunc_noargs
(
&
PyFloat_Type
,
"as_integer_ratio"
));
ASSIGN_PTR
(
_py_long_bit_length
,
cfunc_noargs
(
&
PyLong_Type
,
"bit_length"
));
/* Init types */
PyDec_Type
.
tp_base
=
&
PyBaseObject_Type
;
PyDecContext_Type
.
tp_base
=
&
PyBaseObject_Type
;
...
...
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