[pypy-svn] r62602 - pypy/trunk/pypy/lang/gameboy

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Mar 5 18:06:09 CET 2009


Author: cfbolz
Date: Thu Mar  5 18:06:08 2009
New Revision: 62602

Modified:
   pypy/trunk/pypy/lang/gameboy/cpu.py
   pypy/trunk/pypy/lang/gameboy/gameboy.py
   pypy/trunk/pypy/lang/gameboy/serial.py
   pypy/trunk/pypy/lang/gameboy/timer.py
Log:
get rid of a number of * imports


Modified: pypy/trunk/pypy/lang/gameboy/cpu.py
==============================================================================
--- pypy/trunk/pypy/lang/gameboy/cpu.py	(original)
+++ pypy/trunk/pypy/lang/gameboy/cpu.py	Thu Mar  5 18:06:08 2009
@@ -1,7 +1,6 @@
 
 from pypy.lang.gameboy import constants
-from pypy.lang.gameboy.ram import *
-from pypy.lang.gameboy.interrupt import *
+from pypy.lang.gameboy.interrupt import Interrupt
 from pypy.lang.gameboy.cpu_register import Register, DoubleRegister, \
                                            FlagRegister, ImmediatePseudoRegister
 

Modified: pypy/trunk/pypy/lang/gameboy/gameboy.py
==============================================================================
--- pypy/trunk/pypy/lang/gameboy/gameboy.py	(original)
+++ pypy/trunk/pypy/lang/gameboy/gameboy.py	Thu Mar  5 18:06:08 2009
@@ -5,16 +5,16 @@
 
 """
 from pypy.lang.gameboy import constants
-from pypy.lang.gameboy.cpu import *
-from pypy.lang.gameboy.cartridge import *
-from pypy.lang.gameboy.interrupt import *
-from pypy.lang.gameboy.joypad import *
-from pypy.lang.gameboy.ram import *
-from pypy.lang.gameboy.serial import *
-from pypy.lang.gameboy.sound import *
-from pypy.lang.gameboy.timer import *
-from pypy.lang.gameboy.video import *
-from pypy.lang.gameboy.cartridge import *
+from pypy.lang.gameboy.cpu import CPU
+from pypy.lang.gameboy.interrupt import Interrupt
+from pypy.lang.gameboy.cartridge import CartridgeManager
+from pypy.lang.gameboy.joypad import Joypad, JoypadDriver
+from pypy.lang.gameboy.ram import RAM
+from pypy.lang.gameboy.serial import Serial
+from pypy.lang.gameboy.sound import Sound, SoundDriver, BogusSound
+from pypy.lang.gameboy.timer import Timer, Clock
+from pypy.lang.gameboy.video import Video, VideoDriver
+from pypy.lang.gameboy.cartridge import CartridgeManager, CartridgeFile
 
 
 class GameBoy(object):

Modified: pypy/trunk/pypy/lang/gameboy/serial.py
==============================================================================
--- pypy/trunk/pypy/lang/gameboy/serial.py	(original)
+++ pypy/trunk/pypy/lang/gameboy/serial.py	Thu Mar  5 18:06:08 2009
@@ -1,6 +1,6 @@
 
 from pypy.lang.gameboy import constants
-from pypy.lang.gameboy.interrupt import *
+from pypy.lang.gameboy.interrupt import Interrupt
 from pypy.lang.gameboy.ram import iMemory
 
 class Serial(iMemory):

Modified: pypy/trunk/pypy/lang/gameboy/timer.py
==============================================================================
--- pypy/trunk/pypy/lang/gameboy/timer.py	(original)
+++ pypy/trunk/pypy/lang/gameboy/timer.py	Thu Mar  5 18:06:08 2009
@@ -5,7 +5,7 @@
 """
 
 from pypy.lang.gameboy import constants
-from pypy.lang.gameboy.interrupt import *
+from pypy.lang.gameboy.interrupt import Interrupt
 from math import ceil
 from pypy.lang.gameboy.ram import iMemory
 import time



More information about the Pypy-commit mailing list