diff options
| author | Gabriel Falcão <gabriel@nacaolivre.org> | 2020-03-10 04:30:20 +0100 |
|---|---|---|
| committer | Gabriel Falcão <gabriel@nacaolivre.org> | 2020-03-10 04:31:03 +0100 |
| commit | b8c4b8b1af0587034eb197c9e57480e8c1a47ab9 (patch) | |
| tree | dba56443dbea746cd7f8a76c68c10b4f0c12dba1 | |
| parent | 7652777695376027bce77af22aa7b45dd1d04521 (diff) | |
| download | httpretty-andresriancho-master.tar.gz | |
apply default bufsize from #161andresriancho-master
| -rw-r--r-- | httpretty/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httpretty/core.py b/httpretty/core.py index aa8b2bb..1eaf9b2 100644 --- a/httpretty/core.py +++ b/httpretty/core.py @@ -359,7 +359,7 @@ class fakesock(object): self.timeout = socket._GLOBAL_DEFAULT_TIMEOUT self._sock = fileno or self self.is_http = False - self._bufsize = 1024 + self._bufsize = 32 * 1024 def getpeercert(self, *a, **kw): now = datetime.now() |
