2455 |
2455 |
2456 class LineShortener: |
2456 class LineShortener: |
2457 """ |
2457 """ |
2458 Class used to shorten lines to a given maximum of characters. |
2458 Class used to shorten lines to a given maximum of characters. |
2459 """ |
2459 """ |
2460 def __init__(self, curLine, prevLine, nextLine, maxLength=79, eol="\n", |
2460 def __init__(self, curLine, prevLine, nextLine, maxLength=88, eol="\n", |
2461 indentWord=" ", isDocString=False): |
2461 indentWord=" ", isDocString=False): |
2462 """ |
2462 """ |
2463 Constructor |
2463 Constructor |
2464 |
2464 |
2465 @param curLine text to work on (string) |
2465 @param curLine text to work on (string) |