diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/commands/command/source/my.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/command/source/my.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/command/source/my.py b/lldb/packages/Python/lldbsuite/test/commands/command/source/my.py new file mode 100644 index 00000000000..bd97fda3cbb --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/commands/command/source/my.py @@ -0,0 +1,7 @@ +from __future__ import print_function + + +def date(): + import datetime + today = datetime.date.today() + print(today) |