module_value1 = 5
additiv_global = u'*' * 500
def calledRepeatedly():
# Force frame and eliminate forward propagation (currently).
module_value1
# Make sure we have a local variable s anyway
s = u'2'
additiv = additiv_global
s += additiv
# construct_begin
s += u'lala'
# construct_end
s += additiv
return s
import itertools
for x in itertools.repeat(None, 5000):
calledRepeatedly()
print("OK.")
module_value1 = 5
additiv_global = u'*' * 500
def calledRepeatedly():
# Force frame and eliminate forward propagation (currently).
module_value1
# Make sure we have a local variable s anyway
s = u'2'
additiv = additiv_global
s += additiv
# construct_begin
s += additiv
return s
import itertools
for x in itertools.repeat(None, 5000):
calledRepeatedly()
print("OK.")