[Python-checkins] r83555 - python/branches/py3k/Lib/curses/wrapper.py

georg.brandl python-checkins at python.org
Mon Aug 2 21:44:48 CEST 2010


Author: georg.brandl
Date: Mon Aug  2 21:44:48 2010
New Revision: 83555

Log:
#8861: remove unused variable.

Modified:
   python/branches/py3k/Lib/curses/wrapper.py

Modified: python/branches/py3k/Lib/curses/wrapper.py
==============================================================================
--- python/branches/py3k/Lib/curses/wrapper.py	(original)
+++ python/branches/py3k/Lib/curses/wrapper.py	Mon Aug  2 21:44:48 2010
@@ -17,10 +17,9 @@
     wrapper().
     """
 
-    res = None
     try:
         # Initialize curses
-        stdscr=curses.initscr()
+        stdscr = curses.initscr()
 
         # Turn off echoing of keys, and enter cbreak mode,
         # where no buffering is performed on keyboard input


More information about the Python-checkins mailing list