Add a utility for getting the current UTC seconds-since-epoch time.
parent
50b057918b
commit
a0e1d4db6e
|
@ -377,6 +377,10 @@ def _threaded_copy_data(instream, outstream):
|
||||||
copy_thread.start()
|
copy_thread.start()
|
||||||
return copy_thread
|
return copy_thread
|
||||||
|
|
||||||
|
def _utc_epoch():
|
||||||
|
"""Get the seconds since epoch for UTC."""
|
||||||
|
return int(time.mktime(time.gmtime()))
|
||||||
|
|
||||||
def _which(executable, flags=os.X_OK):
|
def _which(executable, flags=os.X_OK):
|
||||||
"""Borrowed from Twisted's :mod:twisted.python.proutils .
|
"""Borrowed from Twisted's :mod:twisted.python.proutils .
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue