Brett Hannigan added the comment:
Just wanted to check-in to see if there were any updates on my proposed PR?
--
___
Python tracker
<https://bugs.python.org/issue41
Brett Hannigan added the comment:
O.K. CLA is now signed and if I check on the "check-yourself" with my github
user it is showing that I have signed it now.
--
___
Python tracker
<https://bugs.python.o
Brett Hannigan added the comment:
Thanks.
I don't know why it still says CLA not signed - I signed it a week ago, but
I'll try to figure that out this week.
--
___
Python tracker
<https://bugs.python.o
Brett Hannigan added the comment:
I encountered the need for the iterators when trying to create a subclass of
the QueueHandler class that would manage both the QueueHandler and the
QueueListener. The implementation is very similar to that described in this
Medium post:
https://medium.com
Change by Brett Hannigan :
--
versions: -Python 3.10
___
Python tracker
<https://bugs.python.org/issue41177>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Brett Hannigan :
The logging.config module uses three internal data structures to hold items
that may need to be converted to a handler or other object: ConvertingList,
ConvertingTuple, and ConvertingDict.
These three objects provide interfaces to get converted items
Changes by Brett Hannigan :
--
keywords: +patch
Added file: http://bugs.python.org/file37187/argparse.patch
___
Python tracker
<http://bugs.python.org/issue22
Changes by Brett Hannigan :
Added file: http://bugs.python.org/file37178/argparse.py
___
Python tracker
<http://bugs.python.org/issue22848>
___
___
Python-bugs-list mailin
New submission from Brett Hannigan:
When adding an argument to a subparser and passing help=argparse.SUPPRESS, I
would expect this argument to not show up when running help. Instead, I find
that the argument is listed and the help given is ==SUPPRESS==. For example
(also in attached python