[pypy-svn] r33953 - pypy/dist/pypy/translator/c/test

tismer at codespeak.net tismer at codespeak.net
Tue Oct 31 14:50:24 CET 2006


Author: tismer
Date: Tue Oct 31 14:50:23 2006
New Revision: 33953

Modified:
   pypy/dist/pypy/translator/c/test/test_extfunc.py
Log:
mentioning a possible problem with const array, but don't have the energy to evict this problem

Modified: pypy/dist/pypy/translator/c/test/test_extfunc.py
==============================================================================
--- pypy/dist/pypy/translator/c/test/test_extfunc.py	(original)
+++ pypy/dist/pypy/translator/c/test/test_extfunc.py	Tue Oct 31 14:50:23 2006
@@ -580,8 +580,8 @@
             prog = sys.executable
             prog = str(prog)
             args = [prog]
-            args += [] # uaah, become var-sized
 #            args = [prog, '-c', 'print 7*7']
+#           note that the above variant creates a bad array
             args.append('-c')
             args.append('"import os;os._exit(4)"')
             pid = os.spawnv(os.P_NOWAIT, prog, args)



More information about the Pypy-commit mailing list