OILS / opy / _regtest / src / benchmarks / fake_libc.py View on Github | oilshell.org

14 lines, 4 significant
1#!/usr/bin/env python
2"""
3fake_libc.py
4
5For PyPy.
6"""
7
8def regex_parse(regex_str):
9 return True
10
11# This makes things fall through to the first case statement...
12def fnmatch(s, to_match):
13 return True
14