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
b6b873d2
Kaydet (Commit)
b6b873d2
authored
May 17, 2014
tarafından
Alex Gaynor
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed several flake8 errors, including one where a test wouldn't be run
üst
268670a3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
timezone.py
django/utils/timezone.py
+1
-1
test_ordinary_fields.py
tests/invalid_models_tests/test_ordinary_fields.py
+2
-2
test_timezone.py
tests/utils_tests/test_timezone.py
+1
-1
No files found.
django/utils/timezone.py
Dosyayı görüntüle @
b6b873d2
...
...
@@ -360,7 +360,7 @@ def make_aware(value, timezone):
# Check that we won't overwrite the timezone of an aware datetime.
if
is_aware
(
value
):
raise
ValueError
(
"make_aware expects a naive datetime, got
%
s"
%
value
)
"make_aware expects a naive datetime, got
%
s"
%
value
)
# This may be wrong around DST changes!
return
value
.
replace
(
tzinfo
=
timezone
)
...
...
tests/invalid_models_tests/test_ordinary_fields.py
Dosyayı görüntüle @
b6b873d2
...
...
@@ -6,7 +6,7 @@ import unittest
from
django.core.checks
import
Error
,
Warning
as
DjangoWarning
from
django.db
import
connection
,
models
from
django.test.utils
import
override_settings
from
django.utils.timezone
import
make_aware
,
now
from
django.utils.timezone
import
now
from
.base
import
IsolatedModelsTestCase
...
...
@@ -207,7 +207,7 @@ class DateFieldTests(IsolatedModelsTestCase):
field1
=
models
.
DateTimeField
(
auto_now
=
True
,
auto_now_add
=
False
,
default
=
now
)
field2
=
models
.
DateTimeField
(
auto_now
=
False
,
auto_now_add
=
True
,
default
=
now
)
field3
=
models
.
DateTimeField
(
auto_now
=
True
,
auto_now_add
=
True
,
default
=
None
)
expected
=
[]
checks
=
[]
for
i
in
range
(
4
):
...
...
tests/utils_tests/test_timezone.py
Dosyayı görüntüle @
b6b873d2
...
...
@@ -109,7 +109,7 @@ class TimezoneTests(unittest.TestCase):
timezone
.
make_naive
(
datetime
.
datetime
(
2011
,
9
,
1
,
13
,
20
,
30
),
EAT
)
@unittest.skipIf
(
pytz
is
None
,
"this test requires pytz"
)
def
test_make_aware
(
self
):
def
test_make_aware
2
(
self
):
self
.
assertEqual
(
timezone
.
make_aware
(
datetime
.
datetime
(
2011
,
9
,
1
,
12
,
20
,
30
),
CET
),
CET
.
localize
(
datetime
.
datetime
(
2011
,
9
,
1
,
12
,
20
,
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