Pierre Le Marre added the comment:
Thank you for the tip! I just try it, it works. This behavior is not
documented, so it is quite confusing.
I try also to use ``collections.OrderedDict``, as a quick fix, but it does not
work. It seems we need here a simple resolution order
New submission from Pierre Le Marre:
Hi, I use Python 3.2.3 and Python 3.3.0 on Windows 7 64 bits.
I have an issue with the short script enclosed.
I use the module logging to get a log file with logging.FileHandler. There were
some issues about the file access on Windows, so I added a buffer
Pierre Le Marre added the comment:
Thanks for the patch. In which version will be your patch integrated?
--
___
Python tracker
<http://bugs.python.org/issue15
Pierre Le Marre added the comment:
By the way, this issue does not appear with Python 3.2.2.
--
___
Python tracker
<http://bugs.python.org/issue15545>
___
___
Pierre Le Marre added the comment:
I use Python 3.2.3 on GNU/Linux 64bits (openSUSE 12.2).
I have created an in-memory connection with the following code:
conn = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_DECLTYPES,
check_same_thread=False)
conn.row_factory = sqlite3.R
Changes by Pierre Le Marre :
--
components: None
nosy: plemarre
priority: normal
severity: normal
status: open
title: sqlite3.Connection.iterdump() does not work with row_factory =
sqlite3.Row
type: crash
versions: Python 3.2
___
Python tracker