From 79dc45e7c6b040a8e41f485dabe8ab4c1b8642cc Mon Sep 17 00:00:00 2001 From: David Keegan Date: Fri, 1 Nov 2013 23:11:53 +0000 Subject: [PATCH] Comments. --- Recurring.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Recurring.py b/Recurring.py index d1182f1..875a01f 100755 --- a/Recurring.py +++ b/Recurring.py @@ -128,14 +128,17 @@ class Transactions: for Line in Af: RtNew = Transaction(self, Line) if RtNew: + # Line is start of new transaction. self._Nrt = self._Nrt + 1 if Rt is not None: self._Rtl.append(Rt) Rt = RtNew else: + # Line does not start a transaction. if self._Nrt <= 0: # Append to preamble. self._Preamble = self._Preamble + Line else: + # Line continues a transaction. Rt.Add(Line) if Rt is not None: self._Rtl.append(Rt) Af.close()