Files
clang-p2996/lldb/test/API/commands/command/source/my.py
David Spickett 193259cbce [LLDB] Remove __future__ imports from tests
Not needed now that we require python 3.

Reviewed By: kastiglione, JDevlieghere

Differential Revision: https://reviews.llvm.org/D131761
2022-08-15 08:54:06 +00:00

5 lines
83 B
Python

def date():
import datetime
today = datetime.date.today()
print(today)