Built-in module
(seconds, repeat)
| 50 | |
| 51 | |
| 52 | def builtin_mod(seconds, repeat): |
| 53 | """Built-in module""" |
| 54 | name = 'errno' |
| 55 | if name in sys.modules: |
| 56 | del sys.modules[name] |
| 57 | # Relying on built-in importer being implicit. |
| 58 | yield from bench(name, lambda: sys.modules.pop(name), repeat=repeat, |
| 59 | seconds=seconds) |
| 60 | |
| 61 | |
| 62 | def source_wo_bytecode(seconds, repeat): |