summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGodefroid Chapelle <gotcha@bubblenet.be>2007-06-12 09:56:46 +0000
committerGodefroid Chapelle <gotcha@bubblenet.be>2007-06-12 09:56:46 +0000
commitb29a1100c1b5f7d5107dc38e60dcdf320be84c40 (patch)
treed6a56ca7898e73eaee2177afd5fb9fb8ca155fd5
parentd04ed8858660333b1ddded0b3a71e740901158d3 (diff)
downloadzope-tal-b29a1100c1b5f7d5107dc38e60dcdf320be84c40.tar.gz
comments about the workaround
-rw-r--r--src/zope/tal/talpypy/zptest/appzpt.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/zope/tal/talpypy/zptest/appzpt.py b/src/zope/tal/talpypy/zptest/appzpt.py
index 6519dff..afbcc54 100644
--- a/src/zope/tal/talpypy/zptest/appzpt.py
+++ b/src/zope/tal/talpypy/zptest/appzpt.py
@@ -5,3 +5,13 @@ import random
def appfunc():
return zope.tal.zptest.test(random.randrange(3))
+#
+# the code hereunder doesn't work :
+# it results in an ImportError
+#
+# from zope.tal import zptest
+# import random
+
+# def appfunc():
+# return zptest.test(random.randrange(3))
+