Download Install Tutorial Docs FAQ Tools WikiLicense Team IRC Planet Involvement Shop Book

Changeset 1518

Show
Ignore:
Timestamp:
12/11/06 13:58:16
Author:
fumanchu
Message:

2.x backport of [1401] (Inline isdir to save a call to os.stat.)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/cherrypy-2.x/cherrypy/lib/cptools.py

    r1513 r1518  
    99 
    1010import os 
     11import stat as _stat 
    1112import sys 
    1213import time 
     
    204205        raise cherrypy.NotFound() 
    205206     
    206     if os.path.isdir(path): 
     207    # Check if path is a directory. 
     208    if _stat.S_ISDIR(stat.st_mode): 
    207209        # Let the caller deal with it as they like. 
    208210        raise cherrypy.NotFound() 

Hosted by WebFaction

Log in as guest/cpguest to create tickets