[pypy-svn] r54832 - pypy/branch/gameboy-emulator/pypy/lang/gameboy/test

cami at codespeak.net cami at codespeak.net
Sat May 17 16:01:59 CEST 2008


Author: cami
Date: Sat May 17 16:01:57 2008
New Revision: 54832

Modified:
   pypy/branch/gameboy-emulator/pypy/lang/gameboy/test/test_cartridge.py
Log:
got rid of the mappint function


Modified: pypy/branch/gameboy-emulator/pypy/lang/gameboy/test/test_cartridge.py
==============================================================================
--- pypy/branch/gameboy-emulator/pypy/lang/gameboy/test/test_cartridge.py	(original)
+++ pypy/branch/gameboy-emulator/pypy/lang/gameboy/test/test_cartridge.py	Sat May 17 16:01:57 2008
@@ -10,7 +10,8 @@
 
 ROM_PATH = str(py.magic.autopath().dirpath().dirpath())+"/rom"
 CONTENT = "abcdefghijklmnopqrstuvwxyz1234567890"
-MAPPED_CONTENT = map(map_to_byte, CONTENT)
+
+MAPPED_CONTENT = map_to_byte(CONTENT)
 
 # ------------------------------------------------------------------------------
 



More information about the Pypy-commit mailing list