File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ def strlist_minus(a,b):
85
85
a,b are supposed to be lists of case-insensitive strings.
86
86
"""
87
87
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 " ,
89
89
category = DeprecationWarning ,
90
90
stacklevel = 2 ,
91
91
)
@@ -105,7 +105,7 @@ def strlist_intersection(a,b):
105
105
Return intersection of two lists of case-insensitive strings a,b.
106
106
"""
107
107
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 " ,
109
109
category = DeprecationWarning ,
110
110
stacklevel = 2 ,
111
111
)
@@ -125,7 +125,7 @@ def strlist_union(a,b):
125
125
Return union of two lists of case-insensitive strings a,b.
126
126
"""
127
127
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 " ,
129
129
category = DeprecationWarning ,
130
130
stacklevel = 2 ,
131
131
)
You can’t perform that action at this time.
0 commit comments