Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
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
django
Commits
262d4db8
Kaydet (Commit)
262d4db8
authored
Haz 02, 2015
tarafından
zauddelig
Kaydeden (comit)
Tim Graham
Haz 02, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #24897 -- Allowed using choices longer than 1 day with DurationField
üst
3222fc79
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
dateparse.py
django/utils/dateparse.py
+1
-1
1.8.3.txt
docs/releases/1.8.3.txt
+3
-0
test_dateparse.py
tests/utils_tests/test_dateparse.py
+14
-0
No files found.
django/utils/dateparse.py
Dosyayı görüntüle @
262d4db8
...
...
@@ -29,7 +29,7 @@ datetime_re = re.compile(
standard_duration_re
=
re
.
compile
(
r'^'
r'(?:(?P<days>-?\d+) )?'
r'(?:(?P<days>-?\d+)
(days?, )?
)?'
r'((?:(?P<hours>\d+):)(?=\d+:\d+))?'
r'(?:(?P<minutes>\d+):)?'
r'(?P<seconds>\d+)'
...
...
docs/releases/1.8.3.txt
Dosyayı görüntüle @
262d4db8
...
...
@@ -40,3 +40,6 @@ Bugfixes
* Fixed queryset pickling when using ``prefetch_related()`` after deleting
objects (:ticket:`24831`).
* Allowed using ``choices`` longer than 1 day with ``DurationField``
(:ticket:`24897`).
tests/utils_tests/test_dateparse.py
Dosyayı görüntüle @
262d4db8
...
...
@@ -51,6 +51,20 @@ class DateParseTests(unittest.TestCase):
class
DurationParseTests
(
unittest
.
TestCase
):
def
test_parse_python_format
(
self
):
timedeltas
=
[
timedelta
(
days
=
4
,
minutes
=
15
,
seconds
=
30
,
milliseconds
=
100
),
# fractions of seconds
timedelta
(
hours
=
10
,
minutes
=
15
,
seconds
=
30
),
# hours, minutes, seconds
timedelta
(
days
=
4
,
minutes
=
15
,
seconds
=
30
),
# multiple days
timedelta
(
days
=
1
,
minutes
=
00
,
seconds
=
00
),
# single day
timedelta
(
days
=-
4
,
minutes
=
15
,
seconds
=
30
),
# negative durations
timedelta
(
minutes
=
15
,
seconds
=
30
),
# minute & seconds
timedelta
(
seconds
=
30
),
# seconds
]
for
delta
in
timedeltas
:
self
.
assertEqual
(
parse_duration
(
format
(
delta
)),
delta
)
def
test_seconds
(
self
):
self
.
assertEqual
(
parse_duration
(
'30'
),
timedelta
(
seconds
=
30
))
...
...
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