mirror of
https://github.com/python/cpython.git
synced 2024-11-24 18:34:43 +08:00
9d72bb452b
* all calls to functions in the string module (except maketrans) * everything from stropmodule except for maketrans() which is still used
11 lines
149 B
Python
11 lines
149 B
Python
"""This is a test"""
|
|
|
|
from __future__ import nested_scopes; import site
|
|
|
|
def f(x):
|
|
def g(y):
|
|
return x + y
|
|
return g
|
|
|
|
result = f(2)(4)
|