summary refs log tree commit diff stats
path: root/lib/pure
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@googlemail.com>2015-09-17 23:05:16 +0100
committerDominik Picheta <dominikpicheta@googlemail.com>2015-09-17 23:05:16 +0100
commit0f933bbf55f590dbeb42ef74b7d294713840a7d6 (patch)
tree52262d6fd129dc205c52bbb7e649d5b95376e114 /lib/pure
parentdfa0c2cace8770ead60cf2771ed463e3ca54b089 (diff)
downloadNim-0f933bbf55f590dbeb42ef74b7d294713840a7d6.tar.gz
Deprecated ftpclient module.
Diffstat (limited to 'lib/pure')
-rw-r--r--lib/pure/ftpclient.nim9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/pure/ftpclient.nim b/lib/pure/ftpclient.nim
index 778ba6857..229fe4b51 100644
--- a/lib/pure/ftpclient.nim
+++ b/lib/pure/ftpclient.nim
@@ -13,7 +13,12 @@ import sockets, strutils, parseutils, times, os, asyncio
 from asyncnet import nil
 from rawsockets import nil
 from asyncdispatch import PFuture
-
+## **Note**: This module is deprecated since version 0.11.3.
+## You should use the async version of this module
+## `asyncftpclient <asyncftpclient.html>`_.
+##
+## ----
+##
 ## This module **partially** implements an FTP client as specified
 ## by `RFC 959 <http://tools.ietf.org/html/rfc959>`_.
 ##
@@ -36,6 +41,8 @@ from asyncdispatch import PFuture
 ## **Warning:** The API of this module is unstable, and therefore is subject
 ## to change.
 
+{.deprecated.}
+
 type
   FtpBase*[SockType] = ref FtpBaseObj[SockType]
   FtpBaseObj*[SockType] = object
d='n21' href='#n21'>21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89