Changeset 456
- Timestamp:
- 07/12/05 00:09:49
- Files:
-
- trunk/cherrypy/lib/cptools.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/lib/cptools.py
r382 r456 30 30 Just a few convenient functions and classes 31 31 """ 32 33 import cherrypy 32 34 33 35 import inspect … … 103 105 if hasattr( self, args[ 0 ] ): 104 106 return getattr( self, args[ 0 ] )( *args[ 1: ], **kwargs ) 107 else: 108 raise cherrypy.NotFound, cherrypy.request.path 105 109 default.exposed = True 106 110

