Results 19 comments of LiraNuna

Another issue that I would love to insert here that I feel related, is that `process_args` is NOT called on the subparsers! ```python from tap import Tap class SubparserA(Tap): bar:...

Another thing argument groups allow is mutually exclusive arguments, which show nicely in the help as being as such.

It's been a while and I have to admit I forgot most of the details.

Hello, I'm interested in helping implement HKDF and PBKDF2 (and possibly even ECDH) as I need those for a project I'm working on. Your pull request policy is a bit.....

What is the expected behavior when splitting emojis? Given the code, I think it will split `👨‍👩‍👦‍👦` into `'👨', ZWJ, '👩', ZWJ, '👦', ZWJ, '👦'`, is this desired?

> The new document would automatically be given a unique docId. How would that play out with RDBMS that generate their IDs? Sure, it should be possible to add an...

Hello, what is the status of this? I saw this repository https://github.com/pvh/automerge-repo and it's fairly active. How usable is it and would it stay as a separate package to automerge...

Please note that `salt` and `info` are required as per webcrypto spec: https://www.w3.org/TR/WebCryptoAPI/#hkdf-params In addition, HKDF-CRT was replaced with HKDF, and I already addressed it with https://github.com/diafygi/webcrypto-examples/pull/54

Thank you for leaving an issue that was already reported 7 years ago. I'll take it to consideration.

I don't think this is solution will work if need to work within the same connection transaction, which is my requirement. On our server, we use a connection per request...