Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4901d05

Browse files
committed
Bump removal of deprecated functions to next release
This should be done at the *start* of a release cycle.
1 parent 7206ef8 commit 4901d05

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Lib/ldap/cidict.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def strlist_minus(a,b):
8585
a,b are supposed to be lists of case-insensitive strings.
8686
"""
8787
warnings.warn(
88-
"strlist functions are deprecated and will be removed in 3.4",
88+
"strlist functions are deprecated and will be removed in 3.5",
8989
category=DeprecationWarning,
9090
stacklevel=2,
9191
)
@@ -105,7 +105,7 @@ def strlist_intersection(a,b):
105105
Return intersection of two lists of case-insensitive strings a,b.
106106
"""
107107
warnings.warn(
108-
"strlist functions are deprecated and will be removed in 3.4",
108+
"strlist functions are deprecated and will be removed in 3.5",
109109
category=DeprecationWarning,
110110
stacklevel=2,
111111
)
@@ -125,7 +125,7 @@ def strlist_union(a,b):
125125
Return union of two lists of case-insensitive strings a,b.
126126
"""
127127
warnings.warn(
128-
"strlist functions are deprecated and will be removed in 3.4",
128+
"strlist functions are deprecated and will be removed in 3.5",
129129
category=DeprecationWarning,
130130
stacklevel=2,
131131
)

0 commit comments

Comments
 (0)