diff options
author | necoro <> | 2006-10-02 16:21:45 +0000 |
---|---|---|
committer | necoro <> | 2006-10-02 16:21:45 +0000 |
commit | 571d1c1c6814b13fcd2969ad2ff9032f22d4648d (patch) | |
tree | ec2e0211db3e358662c920f3269de93147362506 /geneticone | |
parent | 0495fd8d18ba84e8a373d299f74664d12f5f8d9a (diff) | |
download | portato-571d1c1c6814b13fcd2969ad2ff9032f22d4648d.tar.gz portato-571d1c1c6814b13fcd2969ad2ff9032f22d4648d.tar.bz2 portato-571d1c1c6814b13fcd2969ad2ff9032f22d4648d.zip |
Corrected indention in comment
Diffstat (limited to 'geneticone')
-rw-r--r-- | geneticone/helper.py | 14 |
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)""" |