simplified the fallback case

This commit is contained in:
Tarek Ziadé 2010-03-06 01:23:21 +00:00
parent fbf50b8c7c
commit 7e48ff8e50
1 changed files with 3 additions and 4 deletions

View File

@ -19,11 +19,10 @@
def _get_source_filename():
srcdir = sysconfig.get_config_var('srcdir')
xxmodule = os.path.join(srcdir, 'Modules', 'xxmodule.c')
if not os.path.exists(xxmodule):
if srcdir is None:
# local fallback
xxmodule = os.path.join(os.path.dirname(__file__), 'xxmodule.c')
return xxmodule
return os.path.join(os.path.dirname(__file__), 'xxmodule.c')
return os.path.join(srcdir, 'Modules', 'xxmodule.c')
class BuildExtTestCase(support.TempdirManager,
support.LoggingSilencer,