File: __init__.py

package info (click to toggle)
pygame 1.8.1release-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 5,476 kB
  • ctags: 4,574
  • sloc: ansic: 28,660; python: 13,523; makefile: 61; sh: 1
file content (24 lines) | stat: -rwxr-xr-x 559 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24


# this lets me know that the module has not been imported.
#  we store it so we don't reimport a module each time the isgp2x function is called.
_is_gp2x = -1

def isgp2x():
    """ Returns True if we are running on a gp2x, else False
    """

    if _is_gp2x == -1:
        #TODO: FIXME: HACK: need to find a good way to do this.  
        #   Use configure to put 'gp2x' in the version string?
        import sys

        if "arm" in sys.version:
            _is_gp2x = True
        else:
            _is_gp2x = False
    else:
        return _is_gp2x