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