(self, cookies=None, options=None, limit=2000000)
| 52 | |
| 53 | # @TODO: Add 'limit' parameter to HTTPRequest in v0.4.10 |
| 54 | def __init__(self, cookies=None, options=None, limit=2000000): |
| 55 | self.limit = limit |
| 56 | HTTPRequest.__init__(self, cookies=cookies, options=options) |
| 57 | |
| 58 | def write(self, buf): |
| 59 | """ writes response """ |