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
7d91c025
Unverified
Kaydet (Commit)
7d91c025
authored
Ock 17, 2018
tarafından
Victor Stinner
Kaydeden (comit)
GitHub
Ock 17, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
pythoninfo: add time.time and datetime.datetime.now (#5214)
üst
3a0cf931
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
pythoninfo.py
Lib/test/pythoninfo.py
+13
-1
No files found.
Lib/test/pythoninfo.py
Dosyayı görüntüle @
7d91c025
...
...
@@ -315,6 +315,8 @@ def collect_tkinter(info_add):
def
collect_time
(
info_add
):
import
time
info_add
(
'time.time'
,
time
.
time
())
attributes
=
(
'altzone'
,
'daylight'
,
...
...
@@ -326,7 +328,16 @@ def collect_time(info_add):
if
hasattr
(
time
,
'get_clock_info'
):
for
clock
in
(
'time'
,
'perf_counter'
):
tinfo
=
time
.
get_clock_info
(
clock
)
info_add
(
'time.
%
s'
%
clock
,
tinfo
)
info_add
(
'time.get_clock_info(
%
s)'
%
clock
,
tinfo
)
def
collect_datetime
(
info_add
):
try
:
import
datetime
except
ImportError
:
return
info_add
(
'datetime.datetime.now'
,
datetime
.
datetime
.
now
())
def
collect_sysconfig
(
info_add
):
...
...
@@ -497,6 +508,7 @@ def collect_info(info):
collect_sys
,
collect_sysconfig
,
collect_time
,
collect_datetime
,
collect_tkinter
,
collect_zlib
,
collect_expat
,
...
...
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