Jack Diederich added the comment:
Can you check this on 3.1.2 or 3.2? There were a few bugfixes of the bytes
handling in that timeframe.
--
assignee: -> jackdied
nosy: +jackdied
priority: high -> normal
___
Python tracker
<http://bugs.p
Jack Diederich added the comment:
r76133 (which came after this bug) fixed most test_telnetlib bugs by using
mocks instead of trying to setup full-blown client/server TCP cases.
--
___
Python tracker
<http://bugs.python.org/issue6
Jack Diederich added the comment:
Mike, it is better to think of database rows as immutable tuples. During the
course of a query the contents of the database are considered static - hence
all that locking and kvetching about this or that database not having "true"
foreign key su
Jack Diederich added the comment:
This is a change in the codepath for instances that don't have __class__
defined.
subclass = getattr(instance, '__class__', None)
-if subclass in cls._abc_cache:
+if subclass is not None and subclass in cls._abc_cach
Changes by Jack Diederich :
--
nosy: +jackdied
___
Python tracker
<http://bugs.python.org/issue1673007>
___
___
Python-bugs-list mailing list
Unsubscribe:
101 - 105 of 105 matches
Mail list logo