[Python-checkins] cpython: Removed unused variable

alexander.belopolsky python-checkins at python.org
Mon May 2 19:44:40 CEST 2011


http://hg.python.org/cpython/rev/52e794d80bb4
changeset:   69789:52e794d80bb4
user:        Alexander Belopolsky <alexander.belopolsky at gmail.com>
date:        Mon May 02 13:44:20 2011 -0400
summary:
  Removed unused variable

files:
  Modules/timemodule.c |  1 -
  1 files changed, 0 insertions(+), 1 deletions(-)


diff --git a/Modules/timemodule.c b/Modules/timemodule.c
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -869,7 +869,6 @@
 PyInit_time(void)
 {
     PyObject *m;
-    char *p;
     m = PyModule_Create(&timemodule);
     if (m == NULL)
         return NULL;

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list