[pypy-commit] pypy default: for concatenation to work, this has to be an empty list (thanks ned)

fijal noreply at buildbot.pypy.org
Sun Nov 13 17:00:39 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r49370:38f173ee998a
Date: 2011-11-13 17:00 +0100
http://bitbucket.org/pypy/pypy/changeset/38f173ee998a/

Log:	for concatenation to work, this has to be an empty list (thanks ned)

diff --git a/pypy/translator/platform/__init__.py b/pypy/translator/platform/__init__.py
--- a/pypy/translator/platform/__init__.py
+++ b/pypy/translator/platform/__init__.py
@@ -42,7 +42,7 @@
 
     so_prefixes = ('',)
 
-    extra_libs = ()
+    extra_libs = []
 
     def __init__(self, cc):
         if self.__class__ is Platform:


More information about the pypy-commit mailing list