Changeset 340
- Timestamp:
- 06/20/05 06:38:44
- Files:
-
- trunk/cherrypy/lib/aspect.py (modified) (1 diff)
- trunk/cherrypy/tutorial/tut06_aspects.py (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/lib/aspect.py
r108 r340 30 30 STOP = 0 31 31 CONTINUE = 1 32 33 import warnings 34 warnings.warn("The Aspect module is deprecated. You can use filters instead", 35 DeprecationWarning) 32 36 33 37 class Aspect(object):

