Skip to content

Commit 4f0aa50

Browse files
committed
Add __init__ module to unpythonic.net
1 parent 6a5e4e7 commit 4f0aa50

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

unpythonic/net/__init__.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# -*- coding: utf-8; -*-
2+
"""Networking and REPL-related utilities.
3+
4+
Symbols recommended for library use are imported directly to this namespace.
5+
6+
The hot-patching REPL implementation is contained in the submodules `server`,
7+
`client` and `common`; if you need any of that, feel free to import it
8+
directly (and consult the corresponding docstrings).
9+
"""
10+
11+
from .msg import *
12+
from .ptyproxy import *
13+
from .util import *

0 commit comments

Comments
 (0)