diff options
author | Aman Gupta <aman@tmm1.net> | 2015-10-06 11:06:41 -0700 |
---|---|---|
committer | Aman Gupta <aman@tmm1.net> | 2015-10-06 11:06:41 -0700 |
commit | eea8d604d07aae569843ebccc5bd7791cff40567 (patch) | |
tree | dbb652a24acbf0dfd28e2921f72b0d92fe4a858d /doc/lib.txt | |
parent | a01fd5e93f58a2bf9dea4f577218b8ff7d874bbf (diff) | |
parent | 2e413d3186455bf92ee9bae04304cb34cf1f2557 (diff) | |
download | Nim-eea8d604d07aae569843ebccc5bd7791cff40567.tar.gz |
Merge remote-tracking branch 'origin/devel' into fix-test-failures
Diffstat (limited to 'doc/lib.txt')
-rw-r--r-- | doc/lib.txt | 38 |
1 files changed, 26 insertions, 12 deletions
diff --git a/doc/lib.txt b/doc/lib.txt index 868adde89..3dc58eebf 100644 --- a/doc/lib.txt +++ b/doc/lib.txt @@ -201,12 +201,6 @@ Internet Protocols and Support * `scgi <scgi.html>`_ This module implements helpers for SCGI applications. -* `sockets <sockets.html>`_ - This module implements a simple portable type-safe sockets layer. - -* `asyncio <asyncio.html>`_ - This module implements an asynchronous event loop for sockets. - * `browsers <browsers.html>`_ This module implements procs for opening URLs with the user's default browser. @@ -220,9 +214,6 @@ Internet Protocols and Support * `smtp <smtp.html>`_ This module implement a simple SMTP client. -* `ftpclient <ftpclient.html>`_ - This module implements an FTP client. - * `cookies <cookies.html>`_ This module contains helper procs for parsing and generating cookies. @@ -253,7 +244,7 @@ Internet Protocols and Support This module implements a high-level sockets API. It will replace the ``sockets`` module in the future. -* `rawsockets <rawsockets.html>`_ +* `nativesockets <nativesockets.html>`_ This module implements a low-level sockets API. * `selectors <selectors.html>`_ @@ -265,8 +256,6 @@ Parsers * `parseopt <parseopt.html>`_ The ``parseopt`` module implements a command line option parser. - **Deprecated since version 0.9.3:** Use the `parseopt2 - <parseopt2.html>`_ module instead. * `parseopt2 <parseopt2.html>`_ The ``parseopt2`` module implements a command line option parser. This @@ -397,6 +386,31 @@ Modules for JS backend Declaration of the Document Object Model for the JS backend. +Deprecated modules +------------------ + +* `asyncio <asyncio.html>`_ + This module implements an asynchronous event loop for sockets. + **Deprecated since version 0.11.2:** + Use the `asyncnet <asyncnet.html>`_ together with the + `asyncdispatch <asyncdispatch.html>`_ module instead. + +* `ftpclient <ftpclient.html>`_ + This module implements an FTP client. + **Deprecated since version 0.11.3:** + Use the `asyncftpclient <asyncftpclient.html>`_ module instead. + +* `sockets <sockets.html>`_ + This module implements a simple portable type-safe sockets layer. + **Deprecated since version 0.11.2:** + Use the `net <net.html>`_ or the `rawsockets <rawsockets.html>`_ module + instead. + +* `rawsockets <rawsockets.html>`_ + **Deprecated since version 0.11.4:** + This module has been renamed to `nativesockets <nativesockets.html>`_. + + Impure libraries ================ |