Not needed now that we require python 3. Reviewed By: kastiglione, JDevlieghere Differential Revision: https://reviews.llvm.org/D131761
5 lines
83 B
Python
5 lines
83 B
Python
def date():
|
|
import datetime
|
|
today = datetime.date.today()
|
|
print(today)
|