[Bug #480882] Remove now-pointless check for existence for _curses_panel.c;
Bugfix candidate.
diff --git a/setup.py b/setup.py
index 9796d3f..727f3b9 100644
--- a/setup.py
+++ b/setup.py
@@ -472,8 +472,7 @@
libraries = curses_libs) )
# If the curses module is enabled, check for the panel module
- if (os.path.exists('Modules/_curses_panel.c') and
- module_enabled(exts, '_curses') and
+ if (module_enabled(exts, '_curses') and
self.compiler.find_library_file(lib_dirs, 'panel')):
exts.append( Extension('_curses_panel', ['_curses_panel.c'],
libraries = ['panel'] + curses_libs) )