Commit e18a779
committed
REL: v0.10.0
Feature release for `cycler`. This release includes a number of new
features:
- `Cycler` objecst learned to generate an `itertools.cycle` by calling
them, a-la a generator.
- `Cycler` objects learned to change the name of a key via the
new `.change_key(old_key, new_key)` method.
- `Cycler` objects learned how to compare each other and determine if
they are equal or not (`==`).
- `Cycler` objects learned how to join another `Cycler` to be
concatenated into a singel longer `Cycler` via `concat` method of function.
`A.concat(B)` or `concat(A, B)`.
- The `cycler` factory function learned to construct a complex `Cycler`
from iterables provided as keyword arguments.
- `Cycler` objects learn do show their insides with the `by_key` method
which returns a dictionary of lists (instead of an iterable of dictionaries).1 parent 51c7b2b commit e18a779
3 files changed
+5
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | | - | |
| 52 | + | |
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
74 | | - | |
| 74 | + | |
75 | 75 | | |
76 | | - | |
| 76 | + | |
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| |||
0 commit comments