diff options
author | William Deegan <bill@baddogconsulting.com> | 2015-11-19 19:29:45 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2015-11-19 19:29:45 (GMT) |
commit | 2fea16ec321622be084cb511b001e57f7c1bf6d3 (patch) | |
tree | f28e384de67294d7bbeba6a763df344db676b70c | |
parent | b828f5d4434615042e81c81051fe5dde3fe4304b (diff) | |
download | SCons-2fea16ec321622be084cb511b001e57f7c1bf6d3.zip SCons-2fea16ec321622be084cb511b001e57f7c1bf6d3.tar.gz SCons-2fea16ec321622be084cb511b001e57f7c1bf6d3.tar.bz2 |
remove os.path.lexists from compat module. 2.7 has it
-rw-r--r-- | src/engine/SCons/compat/__init__.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/engine/SCons/compat/__init__.py b/src/engine/SCons/compat/__init__.py index 1bbc1e7..1ef2b25 100644 --- a/src/engine/SCons/compat/__init__.py +++ b/src/engine/SCons/compat/__init__.py @@ -103,13 +103,6 @@ except ImportError: # can fall back to using timestamp. pass -try: - os.path.lexists -except AttributeError: - # Pre-2.4 Python has no os.path.lexists function - def lexists(path): - return os.path.exists(path) or os.path.islink(path) - os.path.lexists = lexists # When we're using the '-3' option during regression tests, importing |