You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is probably more pythonic to accept *args and **kwargs for positional and keyword arguments. The parser methods/functions accept a single keyvals which is meant to be a dictionary. I'd like to change them to accept args and kwargs instead. Backwards compatibility could be maintained with an isinstance. This signature would also match the stdlibs format functions. Methods affected would be compose and globify.
The text was updated successfully, but these errors were encountered:
It is probably more pythonic to accept
*args
and**kwargs
for positional and keyword arguments. The parser methods/functions accept a singlekeyvals
which is meant to be a dictionary. I'd like to change them to accept args and kwargs instead. Backwards compatibility could be maintained with anisinstance
. This signature would also match the stdlibs format functions. Methods affected would becompose
andglobify
.The text was updated successfully, but these errors were encountered: