tests/basics: Add test for getting name of func with closed over locals.

Tests correct decoding of the prelude to get the function name.
pull/1/head
Damien George 2019-09-26 11:48:39 +10:00
parent 1d0423419b
commit 4102320e90
1 changed files with 8 additions and 0 deletions

View File

@ -22,3 +22,11 @@ try:
str((1).to_bytes.__name__)
except AttributeError:
pass
# name of a function that has closed over variables
def outer():
x = 1
def inner():
return x
return inner
print(outer.__name__)