Skip to content

Commit ceb9031

Browse files
committed
rename _let_support to letenv
1 parent 673c890 commit ceb9031

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

unpythonic/let.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from functools import wraps
88

99
from unpythonic.misc import immediate
10-
from unpythonic._let_support import env as _env
10+
from unpythonic.letenv import env as _env
1111

1212
def let(body, **bindings):
1313
"""``let`` expression.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
3-
"""Environment for let constructs. Internal module."""
3+
"""Environment for let constructs."""
44

55
class env:
66
"""Bunch with context manager, iterator and subscripting support.

unpythonic/lispylet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from functools import wraps
88

99
from unpythonic.misc import immediate
10-
from unpythonic._let_support import env as _env
10+
from unpythonic.letenv import env as _env
1111

1212
def let(bindings, body):
1313
"""``let`` expression.

0 commit comments

Comments
 (0)