We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48c1e9b commit cbddc30Copy full SHA for cbddc30
2 files changed
doc/source/changes.rst
@@ -2,6 +2,11 @@
2
Changelog
3
=========
4
5
+3.1.15 (UNRELEASED)
6
+======
7
+
8
+* add deprectation warning for python 3.5
9
10
3.1.14
11
======
12
git/cmd.py
@@ -908,8 +908,8 @@ def transform_kwargs(self, split_single_char_options=True, **kwargs):
908
# order.
909
if sys.version_info[:2] < (3, 6):
910
kwargs = OrderedDict(sorted(kwargs.items(), key=lambda x: x[0]))
911
- warnings.warn("Python 3.5 support is deprecated. It does not preserve the order\n" +
912
- "for key-word arguments. Thus they will be sorted!!")
+ warnings.warn("Python 3.5 support is deprecated and will be removed 2021-09-05.\n" +
+ "It does not preserve the order for key-word arguments and enforce lexical sorting instead.")
913
args = []
914
for k, v in kwargs.items():
915
if isinstance(v, (list, tuple)):
0 commit comments