Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/lib/pygame/gp2x/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pygame/gp2x/__init__.py')
-rwxr-xr-xlib/pygame/gp2x/__init__.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/pygame/gp2x/__init__.py b/lib/pygame/gp2x/__init__.py
deleted file mode 100755
index cb298e9..0000000
--- a/lib/pygame/gp2x/__init__.py
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-# 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
-
-
-