patch 7.4.1743
Problem:    Clang warns for uninitialzed variable. (Michael Jarvis)
Solution:   Initialize it.
diff --git a/src/if_py_both.h b/src/if_py_both.h
index ceedd4c..0b701ae 100644
--- a/src/if_py_both.h
+++ b/src/if_py_both.h
@@ -6070,7 +6070,7 @@
 ConvertFromPySequence(PyObject *obj, typval_T *tv)
 {
     PyObject	*lookup_dict;
-    int		ret;
+    int		ret = 0;
 
     if (!(lookup_dict = PyDict_New()))
 	return -1;
diff --git a/src/version.c b/src/version.c
index 4c00d31..aa181fb 100644
--- a/src/version.c
+++ b/src/version.c
@@ -749,6 +749,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1743,
+/**/
     1742,
 /**/
     1741,