commit | 86dc3ab8e849498471f8f5b65470c7a53d4023e7 | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Thu Feb 13 12:48:46 2014 -0800 |
committer | Alex Gaynor <alex.gaynor@gmail.com> | Thu Feb 13 12:48:46 2014 -0800 |
tree | 4dfd31c89d0376f5a0b8b909835d173ca55ca542 | |
parent | 811163e609c2df4f785473376f914d224d896f07 [diff] |
Fix comments in padding.py to be accurate This is not in fact O(n ** 2) because ``len(self._buffer)`` is bounded by ``self.block_size``. This means that each ``self._buffer += x`` only copies O(len(x)) bytes, meaning the whole thing is linear.