diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-20 20:10:37 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-20 20:37:01 +0200 |
commit | f0cfb8cb45cb1fc91c77fae98f5452b7f7865392 (patch) | |
tree | ce40e3ccea0443f591507c6b8eb765b1fa3121c4 | |
parent | fc35aa682847e9123064eeaf5955c06275b95a0d (diff) | |
download | micropython-f0cfb8cb45cb1fc91c77fae98f5452b7f7865392.tar.gz micropython-f0cfb8cb45cb1fc91c77fae98f5452b7f7865392.zip |
Don't preimport socket module.
-rw-r--r-- | unix/socket.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/unix/socket.c b/unix/socket.c index 7da6bb20d0..e48d8545f7 100644 --- a/unix/socket.c +++ b/unix/socket.c @@ -318,5 +318,4 @@ void rawsocket_init() { STORE_INT_CONST(m, SOCK_STREAM); STORE_INT_CONST(m, SOCK_DGRAM); STORE_INT_CONST(m, SOCK_RAW); - rt_store_name(qstr_from_str_static("rawsocket"), m); } |