Changeset 1701:838c999d1951 for pylons/wsgiapp.py
- Timestamp:
- 11/08/08 18:54:21 (22 months ago)
- Branch:
- trunk
- Children:
- 1702:b668203ea65b, 1703:e2456ff6b3fd
- Files:
-
- 1 modified
-
pylons/wsgiapp.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pylons/wsgiapp.py
r1658 r1701 136 136 # Help Python collect ram a bit faster by removing the reference 137 137 # cycle that the pylons object causes 138 del environ['pylons.pylons'] 138 if 'pylons.pylons' in environ: 139 del environ['pylons.pylons'] 139 140 140 141 def register_globals(self, environ):