summaryrefslogtreecommitdiffstats
path: root/Lib/test/pythoninfo.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2018-01-17 15:35:45 (GMT)
committerGitHub <noreply@github.com>2018-01-17 15:35:45 (GMT)
commit7d91c0250408e202243c77c1dc9afdb321b6b32f (patch)
tree390c9f9072d4b919cc0530570524d9723f1afa46 /Lib/test/pythoninfo.py
parent3a0cf931796b9ad1b4833ab89c79d284b4253c91 (diff)
downloadcpython-7d91c0250408e202243c77c1dc9afdb321b6b32f.zip
cpython-7d91c0250408e202243c77c1dc9afdb321b6b32f.tar.gz
cpython-7d91c0250408e202243c77c1dc9afdb321b6b32f.tar.bz2
pythoninfo: add time.time and datetime.datetime.now (#5214)
Diffstat (limited to 'Lib/test/pythoninfo.py')
-rw-r--r--Lib/test/pythoninfo.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py
index 9ca26c9..f1b0233 100644
--- a/Lib/test/pythoninfo.py
+++ b/Lib/test/pythoninfo.py
@@ -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,