diff --git a/std/cstream.d b/std/cstream.d index 9429572436c..d6833f0474a 100644 --- a/std/cstream.d +++ b/std/cstream.d @@ -1,8 +1,8 @@ // Written in the D programming language. /** - * $(RED Warning: This module is considered out-dated and not up to Phobos' - * current standards. It will be removed by phobos version 2.070.) + * $(RED Deprecated: This module is considered out-dated and not up to Phobos' + * current standards. It will be remove in October 2016.) * * The std.cstream module bridges core.stdc.stdio (or std.stdio) and std.stream. * Both core.stdc.stdio and std.stream are publicly imported by std.cstream. @@ -20,7 +20,8 @@ * (See accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) */ -deprecated("Will be removed by phobos version 2.070") module std.cstream; +deprecated("It will be removed from Phobos in October 2016. If you still need it, go to https://github.com/DigitalMars/undeaD") module std.cstream; +// @@@DEPRECATED_2016-10@@@ public import core.stdc.stdio; public import std.stream; diff --git a/std/socketstream.d b/std/socketstream.d index 86c026aefe9..59648618c99 100644 --- a/std/socketstream.d +++ b/std/socketstream.d @@ -21,8 +21,8 @@ */ /************** - * $(RED Warning: This module is considered out-dated and not up to Phobos' - * current standards. It will be removed by phobos version 2.070.) + * $(RED Deprecated: This module is considered out-dated and not up to Phobos' + * current standards. It will be remove in October 2016.) * * $(D SocketStream) is a stream for a blocking, * connected $(D Socket). @@ -35,8 +35,8 @@ * Source: $(PHOBOSSRC std/_socketstream.d) * Macros: WIKI=Phobos/StdSocketstream */ - -deprecated("Will be removed by phobos version 2.070") module std.socketstream; +deprecated("It will be removed from Phobos in October 2016. If you still need it, go to https://github.com/DigitalMars/undeaD") module std.socketstream; +// @@@DEPRECATED_2016-10@@@ private import std.stream; private import std.socket; diff --git a/std/stream.d b/std/stream.d index 8ca468ce563..e34e1d86282 100644 --- a/std/stream.d +++ b/std/stream.d @@ -1,8 +1,8 @@ // Written in the D programming language /** - * $(RED Warning: This module is considered out-dated and not up to Phobos' - * current standards. It will be removed by phobos version 2.070.) + * $(RED Deprecated: This module is considered out-dated and not up to Phobos' + * current standards. It will be remove in October 2016.) * * Source: $(PHOBOSSRC std/_stream.d) * Macros: @@ -25,8 +25,8 @@ * the suitability of this software for any purpose. It is provided * "as is" without express or implied warranty. */ - -deprecated("Will be removed by phobos version 2.070") module std.stream; +deprecated("It will be removed from Phobos in October 2016. If you still need it, go to https://github.com/DigitalMars/undeaD") module std.stream; +// @@@DEPRECATED_2016-10@@@ import std.internal.cstring;