[issue43631] Update to OpenSSL 1.1.1k

2021-03-30 Thread Brad Warren


Brad Warren  added the comment:

To be fair, I doubt my project is affected by the CVEs. I was just looking to 
upgrade instead of trying to verify that.

--

___
Python tracker 
<https://bugs.python.org/issue43631>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue43631] Update to OpenSSL 1.1.1k

2021-03-29 Thread Brad Warren


Brad Warren  added the comment:

When do you expect there will be new macOS and Windows downloads available at 
https://www.python.org/downloads/ that use OpenSSL 1.1.1k?

One of my projects is relying on these files and I wasn't sure the ETA here.

--

___
Python tracker 
<https://bugs.python.org/issue43631>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue43631] Update to OpenSSL 1.1.1k

2021-03-29 Thread Brad Warren


Change by Brad Warren :


--
nosy: +bmw

___
Python tracker 
<https://bugs.python.org/issue43631>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42650] Can people use dest=argparse.SUPPRESS in custom Action classes?

2020-12-21 Thread Brad Warren


Brad Warren  added the comment:

Thanks for the help! I was mistaken here.

The behavior I want is to not add the option to the namespace regardless of 
whether or not the user set it. I was initially under the impression that 
dest=SUPPRESS caused this behavior, however, it seems to have the same behavior 
as default=SUPPRESS due to the code at 
https://github.com/python/cpython/blob/711381dfb09fbd434cc3b404656f7fd306161a64/Lib/argparse.py#L1838-L1841.
 By using default=SUPPRESS which is documented and a custom __call__ method on 
an Action class, I can get the behavior I want so I'm closing this issue.

Thanks again and sorry for the noise!

--
stage:  -> resolved
status: open -> closed

___
Python tracker 
<https://bugs.python.org/issue42650>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42650] Can people use dest=argparse.SUPPRESS in custom Action classes?

2020-12-15 Thread Brad Warren


New submission from Brad Warren :

argparse internally sets dest=SUPPRESS in action classes like _HelpAction and 
_VersionAction to prevent an attribute from being created for that option on 
the resulting namespace.

Can users creating custom Action classes also use this functionality without 
worrying about it suddenly breaking in a new version of Python? If so, can we 
document this functionality? I'd be happy to submit a PR.

--
assignee: docs@python
components: Documentation
messages: 383089
nosy: bmw, docs@python
priority: normal
severity: normal
status: open
title: Can people use dest=argparse.SUPPRESS in custom Action classes?
versions: Python 3.10, Python 3.6, Python 3.7, Python 3.8, Python 3.9

___
Python tracker 
<https://bugs.python.org/issue42650>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com