From 96abe49090bde832916ca19f45ea6bbf07bb94ea Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 14 May 2014 20:04:44 +0300 Subject: [PATCH] os.path: Define lexists as an alias to exists for now. --- os.path/os/path.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/os.path/os/path.py b/os.path/os/path.py index e91e17d9..aacd3277 100644 --- a/os.path/os/path.py +++ b/os.path/os/path.py @@ -24,3 +24,6 @@ def split(path): def exists(path): return os.access(path, os.F_OK) + +# TODO +lexists = exists