[Python-checkins] r81938 - python/branches/py3k/Modules/_struct.c

mark.dickinson python-checkins at python.org
Sat Jun 12 11:25:14 CEST 2010


Author: mark.dickinson
Date: Sat Jun 12 11:25:13 2010
New Revision: 81938

Log:
Remove unused variable.

Modified:
   python/branches/py3k/Modules/_struct.c

Modified: python/branches/py3k/Modules/_struct.c
==============================================================================
--- python/branches/py3k/Modules/_struct.c	(original)
+++ python/branches/py3k/Modules/_struct.c	Sat Jun 12 11:25:13 2010
@@ -1963,7 +1963,7 @@
 PyMODINIT_FUNC
 PyInit__struct(void)
 {
-    PyObject *ver, *m;
+    PyObject *m;
 
     m = PyModule_Create(&_structmodule);
     if (m == NULL)


More information about the Python-checkins mailing list