micropython

Annotated lib/pygame/__init__.py

579:9df30d738ec1
2012-07-07 Paul Boddie Filter out __init__.py files when looking for submodule files.
paul@505 1
#!/usr/bin/env python
paul@505 2
paul@505 3
"""
paul@505 4
PyGame compatibility package.
paul@505 5
paul@505 6
Copyright (C) 2011 Paul Boddie <paul@boddie.org.uk>
paul@505 7
paul@505 8
This program is free software; you can redistribute it and/or modify it under
paul@505 9
the terms of the GNU General Public License as published by the Free Software
paul@505 10
Foundation; either version 3 of the License, or (at your option) any later
paul@505 11
version.
paul@505 12
paul@505 13
This program is distributed in the hope that it will be useful, but WITHOUT
paul@505 14
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
paul@505 15
FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
paul@505 16
details.
paul@505 17
paul@505 18
You should have received a copy of the GNU General Public License along with
paul@505 19
this program.  If not, see <http://www.gnu.org/licenses/>.
paul@505 20
"""
paul@505 21
paul@505 22
from pygame.constants import *
paul@505 23
paul@505 24
# vim: tabstop=4 expandtab shiftwidth=4