Issue #16537: Check whether self.extensions is empty in setup.py.

Patch by Jonathan Hosmer.
This commit is contained in:
Berker Peksag 2014-09-27 22:37:15 +03:00
parent 1f3a88fe55
commit 21c8d5c7d9
3 changed files with 10 additions and 1 deletions

View File

@ -588,6 +588,7 @@ Randall Hopper
Nadav Horesh
Alon Horev
Jan Hosang
Jonathan Hosmer
Alan Hourihane
Ken Howard
Brad Howes

View File

@ -15,6 +15,12 @@ Library
- Issue #22448: Improve canceled timer handles cleanup to prevent
unbound memory usage. Patch by Joshua Moore-Oliva.
Build
-----
- Issue #16537: Check whether self.extensions is empty in setup.py. Patch by
Jonathan Hosmer.
What's New in Python 3.4.2?
===========================

View File

@ -252,7 +252,9 @@ class PyBuildExt(build_ext):
build_ext.build_extensions(self)
longest = max([len(e.name) for e in self.extensions])
longest = 0
if self.extensions:
longest = max([len(e.name) for e in self.extensions])
if self.failed:
longest = max(longest, max([len(name) for name in self.failed]))