diff options
Diffstat (limited to 'Modules/_io')
-rw-r--r-- | Modules/_io/fileio.c | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/Modules/_io/fileio.c b/Modules/_io/fileio.c index 9f90448..0048240 100644 --- a/Modules/_io/fileio.c +++ b/Modules/_io/fileio.c @@ -42,12 +42,6 @@ #define SMALLCHUNK BUFSIZ #endif -#if SIZEOF_INT < 4 -#define BIGCHUNK (512 * 32) -#else -#define BIGCHUNK (512 * 1024) -#endif - typedef struct { PyObject_HEAD int fd; @@ -528,15 +522,10 @@ new_buffersize(fileio *self, size_t currentsize) } } #endif - if (currentsize > SMALLCHUNK) { - /* Keep doubling until we reach BIGCHUNK; - then keep adding BIGCHUNK. */ - if (currentsize <= BIGCHUNK) - return currentsize + currentsize; - else - return currentsize + BIGCHUNK; - } - return currentsize + SMALLCHUNK; + /* Expand the buffer by an amount proportional to the current size, + giving us amortized linear-time behavior. Use a less-than-double + growth factor to avoid excessive allocation. */ + return currentsize + (currentsize >> 3) + 6; } static PyObject * |