summaryrefslogtreecommitdiff
path: root/plac/doc/example8_.py
diff options
context:
space:
mode:
Diffstat (limited to 'plac/doc/example8_.py')
-rw-r--r--plac/doc/example8_.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/plac/doc/example8_.py b/plac/doc/example8_.py
deleted file mode 100644
index cdea364..0000000
--- a/plac/doc/example8_.py
+++ /dev/null
@@ -1,6 +0,0 @@
-# example8_.py
-def main(dsn, command: ("SQL query", 'option')='select * from table'):
- print('executing %r on %s' % (command, dsn))
-
-if __name__ == '__main__':
- import plac; plac.call(main)