##// END OF EJS Templates
contrib: drop Python < 2.6 from Makefile.python
contrib: drop Python < 2.6 from Makefile.python

File last commit:

r19378:9de689d2 default
r26734:b000d34f default
Show More
casesmash.py
34 lines | 884 B | text/x-python | PythonLexer
Simon Heimberg
cleanup: remove unused imports...
r19322 import os, __builtin__
Matt Mackall
merge with stable
r14730 from mercurial import util
def lowerwrap(scope, funcname):
f = getattr(scope, funcname)
def wrap(fname, *args, **kwargs):
d, base = os.path.split(fname)
try:
files = os.listdir(d or '.')
Simon Heimberg
cleanup: drop unused variables and an unused import
r19378 except OSError:
Matt Mackall
merge with stable
r14730 files = []
if base in files:
return f(fname, *args, **kwargs)
for fn in files:
if fn.lower() == base.lower():
return f(os.path.join(d, fn), *args, **kwargs)
return f(fname, *args, **kwargs)
scope.__dict__[funcname] = wrap
def normcase(path):
return path.lower()
os.path.normcase = normcase
for f in 'file open'.split():
lowerwrap(__builtin__, f)
for f in "chmod chown open lstat stat remove unlink".split():
lowerwrap(os, f)
for f in "exists lexists".split():
lowerwrap(os.path, f)
lowerwrap(util, 'posixfile')