summaryrefslogtreecommitdiff
path: root/plac/doc/read_stdin.py
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2011-06-13 09:57:28 +0200
committerMichele Simionato <michele.simionato@gmail.com>2011-06-13 09:57:28 +0200
commit68e5691ddde6246cd22c7cc6e0b189f2b343e661 (patch)
treeafd0a525154b6540d048e039acea9db6da870e9a /plac/doc/read_stdin.py
parent2c9a92feab665152a02a7482bff9d31bafa2996e (diff)
downloadmicheles-68e5691ddde6246cd22c7cc6e0b189f2b343e661.tar.gz
Removed the plac project, which now has its own page
Diffstat (limited to 'plac/doc/read_stdin.py')
-rw-r--r--plac/doc/read_stdin.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/plac/doc/read_stdin.py b/plac/doc/read_stdin.py
deleted file mode 100644
index 584644f..0000000
--- a/plac/doc/read_stdin.py
+++ /dev/null
@@ -1,13 +0,0 @@
-"""
-You can run this script as
-$ python read_stdin.py < ishelve.bat
-"""
-from __future__ import with_statement
-import sys
-from ishelve import ishelve
-import plac
-
-if __name__ == '__main__':
- with plac.Interpreter(ishelve) as i:
- for line in sys.stdin:
- print(i.send(line))