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
cc55e78a
Unverified
Kaydet (Commit)
cc55e78a
authored
Kas 29, 2017
tarafından
xdegaye
Kaydeden (comit)
GitHub
Kas 29, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-32139: test_strftime does not anymore modify the locale (GH-4569)
üst
041efd29
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
test_strftime.py
Lib/test/test_strftime.py
+4
-2
No files found.
Lib/test/test_strftime.py
Dosyayı görüntüle @
cc55e78a
...
@@ -58,8 +58,10 @@ class StrftimeTest(unittest.TestCase):
...
@@ -58,8 +58,10 @@ class StrftimeTest(unittest.TestCase):
import
java
import
java
java
.
util
.
Locale
.
setDefault
(
java
.
util
.
Locale
.
US
)
java
.
util
.
Locale
.
setDefault
(
java
.
util
.
Locale
.
US
)
except
ImportError
:
except
ImportError
:
import
locale
from
locale
import
setlocale
,
LC_TIME
locale
.
setlocale
(
locale
.
LC_TIME
,
'C'
)
saved_locale
=
setlocale
(
LC_TIME
)
setlocale
(
LC_TIME
,
'C'
)
self
.
addCleanup
(
setlocale
,
LC_TIME
,
saved_locale
)
def
test_strftime
(
self
):
def
test_strftime
(
self
):
now
=
time
.
time
()
now
=
time
.
time
()
...
...
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