summaryrefslogtreecommitdiff
path: root/sandbox/tibs/pysource/test/testfunc.py
diff options
context:
space:
mode:
authorwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2006-01-09 20:44:25 +0000
committerwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2006-01-09 20:44:25 +0000
commitd77fdfef70e08114f57cbef5d91707df8717ea9f (patch)
tree49444e3486c0c333cb7b33dfa721296c08ee4ece /sandbox/tibs/pysource/test/testfunc.py
parent53cd16ca6ca5f638cbe5956988e88f9339e355cf (diff)
parent3993c4097756e9885bcfbd07cb1cc1e4e95e50e4 (diff)
downloaddocutils-0.4.tar.gz
Release 0.4: tagging released revisiondocutils-0.4
git-svn-id: http://svn.code.sf.net/p/docutils/code/tags/docutils-0.4@4268 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'sandbox/tibs/pysource/test/testfunc.py')
-rwxr-xr-xsandbox/tibs/pysource/test/testfunc.py34
1 files changed, 0 insertions, 34 deletions
diff --git a/sandbox/tibs/pysource/test/testfunc.py b/sandbox/tibs/pysource/test/testfunc.py
deleted file mode 100755
index 4a887b098..000000000
--- a/sandbox/tibs/pysource/test/testfunc.py
+++ /dev/null
@@ -1,34 +0,0 @@
-# Stuff needed to make the examples compile...
-class Fred:
- def __getitem__(self,index):
- pass
-a = Fred()
-b = [1,2,3,4]
-d = Fred()
-
-def func1(a,b=1,c='jim',d=None,e=[],f={'a':1,a:1},g=(1,2,3)):
- pass
-
-def func2(a,*args,**kargs):
- pass
-
-def func2a(a,*args):
- pass
-
-def func2b(a,**kargs):
- pass
-
-def func3((a,b,c),d):
- pass
-
-def func4(a=a,b=Fred,c=Fred()):
- pass
-
-def func5(a=[x for x in [1,2,3] if x > 2],
- b=[(x,y) for x in [1,2,3] for y in [3,4,5]]):
- pass
-
-def func6(a=b[1:2],c=d[1,4:6,...,8:9:10],
- e=lambda x: x*2,
- f=lambda x,a=a: func5(x,a)):
- pass