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

pull/5041/head
Paul m. p. P 2019-08-27 01:20:43 +02:00 zatwierdzone przez Damien George
rodzic 0bec07f32b
commit afc8596c15
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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