We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
toolz.curried.exceptions
1 parent b837eac commit bfbed05Copy full SHA for bfbed05
toolz/tests/test_serialization.py
@@ -1,6 +1,6 @@
1
from toolz import *
2
import toolz
3
-import toolz.curried.exceptions
+import toolz.curried
4
import pickle
5
from toolz.compatibility import PY3, PY33, PY34
6
from toolz.utils import raises
@@ -62,8 +62,8 @@ def test_flip():
62
63
def test_curried_exceptions():
64
# This tests a global curried object that isn't defined in toolz.functoolz
65
- merge = pickle.loads(pickle.dumps(toolz.curried.exceptions.merge))
66
- assert merge is toolz.curried.exceptions.merge
+ merge = pickle.loads(pickle.dumps(toolz.curried.merge))
+ assert merge is toolz.curried.merge
67
68
69
@toolz.curry
0 commit comments