Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/library/pippy/__init__.py
blob: 1b79b08fc4490fd12791e1cd397747f74c45453b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""Pippy standard library."""
import pippy.console as console
import pippy.game as pygame
#import pippy.physics as physics

try:
    import pippy.sound as sound
except ImportError:
    pass # this module fails to import on non-XOs.

def wait(delay=0.1):
    """Pause briefly, for animations."""
    import time
    time.sleep(delay)