forked from pytoolz/toolz
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…Not finished. This includes a significant change to curried objects: they never return `functools.partial` objects. Instead, `Curry` *uses* `partial`. This is because `partial` behaves differently. Let me illustrate: `curry(lambda x, y=0: x+y)(y=2)` is valid. `partial(lambda x, y=0: x+y)(y=2)` returns a TypeError. More documentation and tests are needed. PRs (and comments) are welcome.
- Loading branch information
Showing
1 changed file
with
54 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters