File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 77from functools import wraps
88
99from unpythonic .misc import immediate
10- from unpythonic ._let_support import env as _env
10+ from unpythonic .letenv import env as _env
1111
1212def let (body , ** bindings ):
1313 """``let`` expression.
Original file line number Diff line number Diff line change 11#!/usr/bin/env python3
22# -*- coding: utf-8 -*-
3- """Environment for let constructs. Internal module. """
3+ """Environment for let constructs."""
44
55class env :
66 """Bunch with context manager, iterator and subscripting support.
Original file line number Diff line number Diff line change 77from functools import wraps
88
99from unpythonic .misc import immediate
10- from unpythonic ._let_support import env as _env
10+ from unpythonic .letenv import env as _env
1111
1212def let (bindings , body ):
1313 """``let`` expression.
You can’t perform that action at this time.
0 commit comments