-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expand cycler() signature. #14
Conversation
* Update documentation * Update tests
cycler(label1=itr1[, label2=iter2[, ...]]) | ||
|
||
Form 1 simply copies a given `Cycler` object. | ||
Form 2 composes a `Cycler` as an inner product of the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"inner product" might not mean much to many docstring readers here. Maybe add something like, "All iterables are cycled simultaneously."
On my way home, I realize a situation where we would want to keep the two argument form. Technically speaking, Cyclers can use any hashable as keys, but only certain kinds of strings can be keyword arguments. The two-argument form enables situations where the key can't be a keyword argument. We might also want to change the repr back to the two-argument form so that it will always be valid syntax. |
True--but is there a significant cycler use case for keys that are not valid keywords? |
Maybe, maybe not (I haven't delved into my work project enough to determine On Thu, Aug 20, 2015 at 7:37 PM, Eric Firing [email protected]
|
if not isinstance(args[0], Cycler): | ||
raise TypeError("If only one positional argument given, it must " | ||
" be a Cycler instance.") | ||
return copy.copy(args[0]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably want to do a keep copy, I can in to some really weird bugs earlier due to underlying dict objects getting shared. I think this will play badly with the re-labeling functionality.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want me to use copy.deepcopy()
everywhere, or just here?
Can we keep the 2 positional args as valid input as well? I see the advantage to this (and going cycler('c', 'rgb') better than cycler(c='rgb') even though the first is is more typing. One use-case for non-string keys is if someone is using I am so-so to 👎 with breaking API. It has only been out for a month or two, but we have some external users (@danielballan is using this in our day job) and there is at least one plausible use case for non-string keys. 👍 on adding the implicit 👍 on changing the repr back to the |
Maybe I'm just used to the current API, but I also like two args, and I am
|
Ok, I brought back the 2-arg form of the call signature, and even modified some unit tests to use labels that can't be used as a keyword argument (which caught a couple things). Also updated the docs a bit per comments. |
|
||
assert_raises(ValueError, cycler, 'c', c2 + c3) | ||
assert_raises(ValueError, cycler, c=c2+c3) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should have both of these tests 🐑
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
never mind
ENH/API: Expand cycler() signature
thanks @WeatherGod |
Closes #12 . If you don't like the idea of breaking the API, we can easily add in support for a single pair of positional args, and keep just about everything else.
Btw, I didn't have time to look up how to display and reference multiple call signatures in numpydoc format, so it is probably "wrong".