[issue1389051] imaplib causes excessive fragmentation for large documents

2008-03-07 Thread vila

Changes by vila:


--
nosy: +vila

_
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1389051
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1389051] imaplib causes excessive fragmentation for large documents

2008-02-23 Thread A.M. Kuchling

Changes by A.M. Kuchling:


--
assignee:  - akuchling
nosy: +akuchling

_
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1389051
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1389051] imaplib causes excessive fragmentation for large documents

2008-02-23 Thread A.M. Kuchling

A.M. Kuchling added the comment:

Fredrik's suggested fix for SSL IMAP committed as rev. 61006, and to
2.5-maint in rev. 61007.

There still seems to be a problem with the non-SSL version.  I'm looking
into that next.

_
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1389051
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1389051] imaplib causes excessive fragmentation for large documents

2008-02-23 Thread A.M. Kuchling

A.M. Kuchling added the comment:

Andreas Lauer's suggested fix on #1092502 is correct, and fixes the
problem for the non-SSL IMAP class.  Applied to 2.6 trunk in rev. 61008
and to 2.5-maint in rev. 61009.

--
resolution:  - fixed
status: open - closed

_
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1389051
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1389051] imaplib causes excessive fragmentation for large documents

2008-01-28 Thread A.M. Kuchling

Changes by A.M. Kuchling:


--
keywords: +patch

_
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1389051
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1389051] imaplib causes excessive fragmentation for large documents

2008-01-24 Thread Richard Cooper

Richard Cooper added the comment:

I think I was just bitten by the non-SSL version of this bug on Python 2.5.1 
(r251:54863) on Mac 
OS 10.5. It manifested itself as a malloc error: can't allocate region while 
downloading a 
message using imaplib.

As suggested by effbot I changed data = self._sock.recv(recv_size) to data = 
self._sock.recv(min(recv_size, 16384)) in both places that line appears in 
socket.py. Making 
that change fixed the problem for me.

Note that http://bugs.python.org/issue1092502 seems to be a duplicate of this 
issue. That issue 
contains a slightly different fix proposed by a_lauer, which I've not tried.

--
nosy: +rich

_
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1389051
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1389051] imaplib causes excessive fragmentation for large documents

2008-01-20 Thread Christian Heimes

Christian Heimes added the comment:

I read your posting on the python general list.

Eeeeh! That's awful.

--
keywords: +easy
nosy: +tiran
priority: normal - high
type:  - behavior
versions: +Python 2.5, Python 2.6 -Python 2.4

_
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1389051
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com