File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments