docs/reference/speed_python: Add missing self to var caching example.

This commit is contained in:
Paul m. p. P 2019-08-27 01:20:43 +02:00 committed by Damien George
parent 0bec07f32b
commit afc8596c15
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ by caching the object in a local variable:
class foo(object):
def __init__(self):
ba = bytearray(100)
self.ba = bytearray(100)
def bar(self, obj_display):
ba_ref = self.ba
fb = obj_display.framebuffer