Show More
@@ -512,7 +512,7 b' class Inspector:' | |||
|
512 | 512 | src = getsource(obj.__class__,binary_file) |
|
513 | 513 | if src is not None: |
|
514 | 514 | source = self.format(src) |
|
515 | out.write(header('Source:\n')+source.rstrip()) | |
|
515 | out.write(header('Source:\n')+source.rstrip()+'\n') | |
|
516 | 516 | source_success = True |
|
517 | 517 | except Exception, msg: |
|
518 | 518 | pass |
@@ -537,7 +537,7 b' class Inspector:' | |||
|
537 | 537 | init_ds = None |
|
538 | 538 | |
|
539 | 539 | if init_def or init_ds: |
|
540 |
out.writeln(header(' |
|
|
540 | out.writeln(header('Constructor information:')) | |
|
541 | 541 | if init_def: |
|
542 | 542 | out.write(header('Definition:\t')+ self.format(init_def)) |
|
543 | 543 | if init_ds: |
General Comments 0
You need to be logged in to leave comments.
Login now