summaryrefslogtreecommitdiff
path: root/geneticone/helper.py
diff options
context:
space:
mode:
authornecoro <>2006-10-02 16:21:45 +0000
committernecoro <>2006-10-02 16:21:45 +0000
commit571d1c1c6814b13fcd2969ad2ff9032f22d4648d (patch)
treeec2e0211db3e358662c920f3269de93147362506 /geneticone/helper.py
parent0495fd8d18ba84e8a373d299f74664d12f5f8d9a (diff)
downloadportato-571d1c1c6814b13fcd2969ad2ff9032f22d4648d.tar.gz
portato-571d1c1c6814b13fcd2969ad2ff9032f22d4648d.tar.bz2
portato-571d1c1c6814b13fcd2969ad2ff9032f22d4648d.zip
Corrected indention in comment
Diffstat (limited to '')
-rw-r--r--geneticone/helper.py14
1 files changed, 6 insertions, 8 deletions
diff --git a/geneticone/helper.py b/geneticone/helper.py
index f951700..7ceede8 100644
--- a/geneticone/helper.py
+++ b/geneticone/helper.py
@@ -13,14 +13,12 @@ import traceback, textwrap, os.path
def debug(*args, **kwargs):
"""Prints a debug message including filename and lineno.
-
- A variable number of positional arguments are allowed. If
- lineno(obj0, obj1, obj2)
- is called, the text part of the output looks like the output from
- print obj0, obj1, obj2
- The optional keyword "wrap" causes the message to be line-wrapped. The
- argument to "wrap" should be "1" or "True". "name" is another optional
- keyword parameter.
+ A variable number of positional arguments are allowed.
+ If lineno(obj0, obj1, obj2) is called, the text part of the output
+ looks like the output from print obj0, obj1, obj2 .
+ The optional keyword "wrap" causes the message to be line-wrapped. The
+ argument to "wrap" should be "1" or "True". "name" is another optional
+ keyword parameter.
(This function is adapted from Edward Jones as published under: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/279155)"""