File: sub_sample_3_1.py

package info (click to toggle)
hiro 1.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 452 kB
  • sloc: python: 2,006; sh: 54; makefile: 30
file content (25 lines) | stat: -rw-r--r-- 344 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""

"""
from datetime import date, datetime
from time import gmtime, sleep, time


def sub_sample_3_1_now():
    return datetime.now()


def sub_sample_3_1_today():
    return date.today()


def sub_sample_3_1_sleep(seconds):
    sleep(seconds)


def sub_sample_3_1_time():
    return time()


def sub_sample_3_1_gmtime():
    return gmtime()