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