controls/DebugVariablePanel/RingBuffer.py
branchpython3
changeset 3750 f62625418bff
parent 2742 5f7445b582d4
child 3916 6ca1adad3f0e
--- a/controls/DebugVariablePanel/RingBuffer.py	Mon Mar 27 10:19:14 2023 +0200
+++ b/controls/DebugVariablePanel/RingBuffer.py	Fri Oct 28 12:39:15 2022 +0800
@@ -44,7 +44,7 @@
         note: only when this function is called, is an O(size) performance hit incurred,
         and this cost is amortized over the whole padding space
         """
-        print 'compacting'
+        print('compacting')
         self.buffer[:self.count] = self.view
         self.cursor -= self.size