Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/library/pippy/__init__.py
blob: 58148655ed6eb5dd651cf081784c0d7f3493d08c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""Pippy standard library."""
import pippy.console as console
import pippy.game as pygame
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)