First time here? Check out the Help page!
1 | initial version |
@bbrannon4, You could do it in a few line by retrieving the standard output. This would involve no text manipulation per se and no loops:
stdout = sys.stdout
sys.stdout = six.StringIO()
idf1.printidf()
idf2.printidf()
idfall = sys.stdout.getvalue()
sys.stdout = stdout
2 | No.2 Revision |
@bbrannon4, You you could do it in a few line by retrieving the standard output. This would involve no text manipulation per se and no loops:loops but it is not a full "eppy" solution.
stdout = sys.stdout
sys.stdout = six.StringIO()
idf1.printidf()
idf2.printidf()
idfall = sys.stdout.getvalue()
sys.stdout = stdout
3 | No.3 Revision |
@bbrannon4, you could do it in a few line by retrieving the standard output. This would involve no text manipulation per se and no loops but it is not a full "eppy" solution.
stdout = sys.stdout
sys.stdout = six.StringIO()
idf1.printidf()
idf2.printidf()
idfall idf_all = sys.stdout.getvalue()
sys.stdout = stdout