New submission from Márcio Mocellin :
In Python 3.6.8 (default, Apr 16 2020, 01:36:27) [GCC 8.3.1 20191121 (Red Hat
8.3.1-5)] on linux, when I materialize the list, it is shown and is deleted.
Shouldn't the list persist in memory? Is this a bug or is it really?
```python
>>>
Changes by Márcio :
--
nosy: -marcio
___
Python tracker
<http://bugs.python.org/issue5380>
___
___
Python-bugs-list mailing list
Unsubscribe:
https://mail.pyth
Changes by Márcio Faustino :
--
nosy: +marciof
___
Python tracker
<http://bugs.python.org/issue5380>
___
___
Python-bugs-list mailing list
Unsubscribe:
Márcio Faustino added the comment:
I got that error on Windows 7 Professional 64 bits, using Python 2.6.4 64 bits.
I just changed the "imaplib.IMAP4_SSL" class, by making the "read" and
"readline" functions use "cStringIO.StringIO()" ins
Márcio Faustino added the comment:
Speaking for myself, I'm not using the attached patch, I'm using the simple fix
I included in my previous reply which works perfectly to avoid getting a
MemoryError exception thrown.
--
___
Python trac
Márcio Faustino added the comment:
I've been also receiving the same error while using "imaplib.IMAP4_SSL" to
download large e-mails.
A simple change in the "read" and "readline" functions to use instead a
"cStringIO.StringIO" buffer o
Márcio Faustino added the comment:
Shouldn't the "replace('%%', '')" take place before
"_interpvar_re.sub"? For example, the value "%%(test)s" should be
accepted as valid but it i
New submission from Márcio Faustino :
The SafeConfigParser class incorrectly detects lone percent signs,
for example, it doesn't accept "100%%" as a valid value. The cause of
this is the "_badpercent_re" regular expression:
- The first alternative "%[^%]" fail