Tomer Vromen added the comment:
Just wanted to add that I encountered this today, went to file a ticket, and
found this one. I'm fine with either style of documentation.
--
nosy: +tomerv
___
Python tracker
<https://bugs.python.org/is
New submission from Tomer Vromen :
Bitwise operators have inconsistent behavior when acting on bool values:
(Python 3.7.4)
# "&" works like "and"
>>> True & True
True
>>> True & False
False
>>> False & False
False
# "|&q
Tomer Vromen added the comment:
Thank you for the quick response.
Are PEPs considered de-facto documentation for language features? For example,
string formatting was described in PEP 3101, but still has sections in the
documentation dedicated to it. I believe that decorators should get a
New submission from Tomer Vromen :
The documentation for decorators (for methods and classes) is pretty lacking.
Searching for "decorator" ( https://docs.python.org/3/search.html?q=decorator )
brings up a lot of libraries that use decorators, but no documentation
explaining what th