summaryrefslogtreecommitdiff
path: root/pypers/pep318/pro1.py
diff options
context:
space:
mode:
Diffstat (limited to 'pypers/pep318/pro1.py')
-rwxr-xr-xpypers/pep318/pro1.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/pypers/pep318/pro1.py b/pypers/pep318/pro1.py
new file mode 100755
index 0000000..a9c2e0f
--- /dev/null
+++ b/pypers/pep318/pro1.py
@@ -0,0 +1,7 @@
+# pro1.py
+import sys
+f=sys.stdout
+a='ciao'
+def prn():
+ print >> f, a
+