Created
August 11, 2011 21:38
-
-
Save anonymous/1140856 to your computer and use it in GitHub Desktop.
Pasted form Komodo IDE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> from medley.common.middleware import ThreadLocalsRequestMiddleware | |
>>> class R(object): | |
... is_mobile = True | |
... | |
>>> R().is_mobile | |
True | |
>>> ThreadLocalsRequestMiddleware().process_request(R()) | |
>>> from medley.common.middleware import get_current_request | |
>>> get_current_request().is_mobile | |
True | |
>>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment