From 4ee8a69800373b73f6b1a573c333511af8ce26f7 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 2 Apr 2017 00:42:46 +0100 Subject: [PATCH] absurd --- test.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 test.py diff --git a/test.py b/test.py new file mode 100755 index 0000000..e1a1568 --- /dev/null +++ b/test.py @@ -0,0 +1,17 @@ +#!/usr/bin/python3 + +def hi(th, x): + print('hi %s %s' % (th, x)) + +def rt(): + global g + g = { } + while len(g) < 3: + newthing = object() + newfunc = lambda x: hi(newthing, x) + g[newthing] = newfunc + +rt() +print(repr(g)) +for v in g.values(): + v(24) -- 2.30.2