Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 123456789101112 |
- from . import strategy
-
-
- class StrategyMiddleware(object):
- """
- Responsible for assigning the appropriate stockrecord
- strategy instance to the request
- """
-
- def process_request(self, request):
- # Default to picking the first available stockrecord
- request.strategy = strategy.FirstStockrecord(request)
|