summaryrefslogtreecommitdiff
path: root/passlib/context.py
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2016-11-22 17:24:24 -0500
committerEli Collins <elic@assurancetechnologies.com>2016-11-22 17:24:24 -0500
commit0b4dd0be304bf2facd0f3c3f88b61353b8f0a473 (patch)
tree4711f3838f2c31395f15a613b5f37a3b4e7fcd92 /passlib/context.py
parent4f03b94b1c26468400c4839c0932f411e6667fe7 (diff)
downloadpasslib-0b4dd0be304bf2facd0f3c3f88b61353b8f0a473.tar.gz
passlib.utils: relocated a bunch of binary encoding helpers to .utils.binary submodule
Diffstat (limited to 'passlib/context.py')
-rw-r--r--passlib/context.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/passlib/context.py b/passlib/context.py
index 98cee6c..e9d1e23 100644
--- a/passlib/context.py
+++ b/passlib/context.py
@@ -15,8 +15,9 @@ from passlib.exc import ExpectedStringError, ExpectedTypeError, PasslibConfigWar
from passlib.registry import get_crypt_handler, _validate_handler_name
from passlib.utils import (handlers as uh, to_bytes,
to_unicode, splitcomma,
- as_bool, timer, rng, getrandstr, BASE64_CHARS,
+ as_bool, timer, rng, getrandstr,
)
+from passlib.utils.binary import BASE64_CHARS
from passlib.utils.compat import (iteritems, num_types, irange,
PY2, PY3, unicode, SafeConfigParser,
NativeStringIO, BytesIO,