New submission from Franck Michea:
Documentation:
-
http://docs.python.org/3.3/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.get
-
http://docs.python.org/3.3/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.iter
These two functions are documented with
Changes by Franck Michea :
--
nosy: +kushou
___
Python tracker
<http://bugs.python.org/issue16143>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Franck Michea:
Hi. As of python 3, behavior of object.__ne__ changed to call (not
object.__eq__) if implemented. This changement can be seen in function
object_richcompare in file Objects/typeobject.c.
Documentation didn't change though, still saying[1] that "Th
Franck Michea added the comment:
I am neutral on this too, it just felt odd and this is why the question raised.
Yesterday I tried to add sequences and iterables (only to issubclass but indeed
it would need better testing and all) and came to a problem with sequences. The
current
Franck Michea added the comment:
Here is at least a correction of Descriptors' HowTo. There are two versions
since some stuff differs (object inheritance, ...).
Here are some of my interrogations though:
- RevealAccess is not using instance parameter, so value is shared. Is this
int
Changes by Franck Michea :
Added file:
http://bugs.python.org/file29041/12077_descriptor_howto_python2.patch
___
Python tracker
<http://bugs.python.org/issue12
New submission from Franck Michea:
Hi! Noticed that the wrong mode was missing from the error message of
socket.makefile. Nothing important, but this patch fixes the thing anyway, if
you want it.
--
components: Library (Lib)
files: missing_mode_in_error.patch
keywords: patch
messages
Changes by Franck Michea :
--
nosy: +kushou
___
Python tracker
<http://bugs.python.org/issue17239>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Franck Michea:
Hi, for those of you that prefer to read an example, you can read that
commented demonstration of the bug[1].
Today I discovered what I think is a bug in the import system. Here is the
basic setup:
We have three nested packages: foo -> bar -> baz. T