photon rename

This commit is contained in:
James Turk 2011-05-10 00:39:04 -04:00
parent 92db17a3ed
commit cc16beb8b0
17 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
from csdl import init, InitFlags
from csdl.video import Window
from csdl.events import EventType, poll_event, WindowEventType
from photon import init, InitFlags
from photon.video import Window
from photon.events import EventType, poll_event, WindowEventType
import time
def simple_timed_loop(draw_func):

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python
import random
from csdl.video import Rect
from photon.video import Rect
from demo_utils import simple_timed_loop
def draw(window):

View File

@ -1,5 +1,5 @@
from __future__ import print_function
from csdl import sysinfo
from photon import sysinfo
def main():
print('Platform:', sysinfo.get_platform())

View File

@ -1 +1 @@
nosetests --cover-html --with-coverage --cover-package=csdl --cover-inclusive -v -s
nosetests --cover-html --with-coverage --cover-package=photon --cover-inclusive -v -s