Ignore:
Timestamp:
Mar 19, 2014, 11:11:30 AM (11 years ago)
Author:
dmik
Message:

python: Update vendor to 2.7.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/vendor/current/Lib/genericpath.py

    r2 r388  
    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.