diff options
author | Michele Simionato <michele.simionato@gmail.com> | 2015-07-20 11:12:42 +0200 |
---|---|---|
committer | Michele Simionato <michele.simionato@gmail.com> | 2015-07-20 11:12:42 +0200 |
commit | cb0effeeb8800abf028c89a392684cb599fd8259 (patch) | |
tree | 6ed2d8326d82acab2181afbb751065c8d84c2380 /test.py | |
parent | cc752587247ffe103bacfa86e84b5797959cd845 (diff) | |
download | python-decorator-git-cb0effeeb8800abf028c89a392684cb599fd8259.tar.gz |
Multidispatch, initial implementation
Diffstat (limited to 'test.py')
-rw-r--r-- | test.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -35,6 +35,8 @@ def test1(): this = getfname(f1) assert this == 'test.py', this + + if __name__ == '__main__': t0 = time.time() for name, test in list(globals().items()): |