diff options
author | Araq <rumpf_a@web.de> | 2014-12-17 23:55:04 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-12-17 23:55:04 +0100 |
commit | dd410ab0843b1bb153befa776bd07a6f3def4f25 (patch) | |
tree | eca27b394511bfffabc64a97182aee83d49ff939 /lib | |
parent | bd88e526cf115eff00a27976c14ad868a974a548 (diff) | |
download | Nim-dd410ab0843b1bb153befa776bd07a6f3def4f25.tar.gz |
fixes #1698
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/sockets.nim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/pure/sockets.nim b/lib/pure/sockets.nim index e3c32e806..e67321a59 100644 --- a/lib/pure/sockets.nim +++ b/lib/pure/sockets.nim @@ -23,6 +23,11 @@ ## ## Asynchronous sockets are supported, however a better alternative is to use ## the `asyncio <asyncio.html>`_ module. +## +## Since version 0.10.2 this module is deprecated. Use the `net <net.html>`_ +## or the ``rawsockets <rawsockets.html>`_ module instead. + +{.deprecated.} include "system/inclrtl" |