Changeset 1643
- Timestamp:
- 03/19/07 02:26:03
- Files:
-
- trunk/cherrypy/_cprequest.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cprequest.py
r1636 r1643 389 389 HTTPError, which are more properly called 'exceptions', not errors).""" 390 390 391 closed = False 392 closed__doc = """ 393 True once the close method has been called, False otherwise.""" 394 391 395 namespaces = _cpconfig.NamespaceSet( 392 396 **{"hooks": hooks_namespace, … … 419 423 420 424 def close(self): 421 """Run cleanup code and remove self from globals. (Core)"""425 """Run cleanup code. (Core)""" 422 426 if not self.closed: 423 427 self.closed = True

