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
07019bca
Kaydet (Commit)
07019bca
authored
Nis 06, 2011
tarafından
Alexander Belopolsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #11576: Fixed timedelta subtraction glitch on big timedelta values
üst
5f511826
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
7 deletions
+15
-7
test_datetime.py
Lib/test/test_datetime.py
+7
-0
datetimemodule.c
Modules/datetimemodule.c
+8
-7
No files found.
Lib/test/test_datetime.py
Dosyayı görüntüle @
07019bca
...
@@ -231,6 +231,13 @@ class TestTimeDelta(HarmlessMixedComparison, unittest.TestCase):
...
@@ -231,6 +231,13 @@ class TestTimeDelta(HarmlessMixedComparison, unittest.TestCase):
eq
(
a
//
10
,
td
(
0
,
7
*
24
*
360
))
eq
(
a
//
10
,
td
(
0
,
7
*
24
*
360
))
eq
(
a
//
3600000
,
td
(
0
,
0
,
7
*
24
*
1000
))
eq
(
a
//
3600000
,
td
(
0
,
0
,
7
*
24
*
1000
))
# Issue #11576
eq
(
td
(
999999999
,
86399
,
999999
)
-
td
(
999999999
,
86399
,
999998
),
td
(
0
,
0
,
1
))
eq
(
td
(
999999999
,
1
,
1
)
-
td
(
999999999
,
1
,
0
),
td
(
0
,
0
,
1
))
def
test_disallowed_computations
(
self
):
def
test_disallowed_computations
(
self
):
a
=
timedelta
(
42
)
a
=
timedelta
(
42
)
...
...
Modules/datetimemodule.c
Dosyayı görüntüle @
07019bca
...
@@ -1737,13 +1737,14 @@ delta_subtract(PyObject *left, PyObject *right)
...
@@ -1737,13 +1737,14 @@ delta_subtract(PyObject *left, PyObject *right)
if
(
PyDelta_Check
(
left
)
&&
PyDelta_Check
(
right
))
{
if
(
PyDelta_Check
(
left
)
&&
PyDelta_Check
(
right
))
{
/* delta - delta */
/* delta - delta */
PyObject
*
minus_right
=
PyNumber_Negative
(
right
);
/* The C-level additions can't overflow because of the
if
(
minus_right
)
{
* invariant bounds.
result
=
delta_add
(
left
,
minus_right
);
*/
Py_DECREF
(
minus_right
);
int
days
=
GET_TD_DAYS
(
left
)
-
GET_TD_DAYS
(
right
);
}
int
seconds
=
GET_TD_SECONDS
(
left
)
-
GET_TD_SECONDS
(
right
);
else
int
microseconds
=
GET_TD_MICROSECONDS
(
left
)
-
result
=
NULL
;
GET_TD_MICROSECONDS
(
right
);
result
=
new_delta
(
days
,
seconds
,
microseconds
,
1
);
}
}
if
(
result
==
Py_NotImplemented
)
if
(
result
==
Py_NotImplemented
)
...
...
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