Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Lib/genericpath.py

    r2 r391  
    1616    """Test whether a path exists.  Returns False for broken symbolic links"""
    1717    try:
    18         st = os.stat(path)
     18        os.stat(path)
    1919    except os.error:
    2020        return False
     
    2323
    2424# This follows symbolic links, so both islink() and isdir() can be true
    25 # for the same path ono systems that support symlinks
     25# for the same path on systems that support symlinks
    2626def isfile(path):
    2727    """Test whether a path is a regular file"""
Note: See TracChangeset for help on using the changeset viewer.