summaryrefslogtreecommitdiff
path: root/plac/doc/example5.py
diff options
context:
space:
mode:
Diffstat (limited to 'plac/doc/example5.py')
-rw-r--r--plac/doc/example5.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/plac/doc/example5.py b/plac/doc/example5.py
deleted file mode 100644
index a2de37c..0000000
--- a/plac/doc/example5.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# example5.py
-from datetime import date
-
-def main(dsn, table='product', today=date.today()):
- "Do something on the database"
- print(dsn, table, today)
-
-if __name__ == '__main__':
- import plac; plac.call(main)