summaryrefslogtreecommitdiff
path: root/networkx/readwrite
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2020-07-07 12:41:00 -0700
committerJarrod Millman <jarrod.millman@gmail.com>2020-07-07 13:43:41 -0700
commitd2f6ff10081218cef28dba33c826da1662afe7a5 (patch)
tree68a28857593405a8c99c5aa6b557fc76487d2ee3 /networkx/readwrite
parent70ecfcbcb0ea48af63c13295a27f0a89bb9db680 (diff)
downloadnetworkx-d2f6ff10081218cef28dba33c826da1662afe7a5.tar.gz
Organize removal of deprecated code
Diffstat (limited to 'networkx/readwrite')
-rw-r--r--networkx/readwrite/gml.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/networkx/readwrite/gml.py b/networkx/readwrite/gml.py
index 683cc7ce..1c3eab12 100644
--- a/networkx/readwrite/gml.py
+++ b/networkx/readwrite/gml.py
@@ -101,7 +101,7 @@ def literal_destringizer(rep):
ValueError
If `rep` is not a Python literal.
"""
- msg = "literal_destringizer is deprecated and will be removed in 2.6."
+ msg = "literal_destringizer is deprecated and will be removed in 3.0."
warnings.warn(msg, DeprecationWarning)
if isinstance(rep, str):
orig_rep = rep
@@ -496,7 +496,7 @@ def literal_stringizer(value):
The original value can be recovered using the
:func:`networkx.readwrite.gml.literal_destringizer` function.
"""
- msg = "literal_stringizer is deprecated and will be removed in 2.6."
+ msg = "literal_stringizer is deprecated and will be removed in 3.0."
warnings.warn(msg, DeprecationWarning)
def stringize(value):