1
0
Fork 0
ProjektAI/kelner/venv/Lib/site-packages/pygame/docs/__init__.py

13 lines
287 B
Python
Raw Normal View History

2020-03-22 02:01:57 +01:00
# Make docs a package that brings up the main page in a web brower when
# executed.
#
# python -m pygame.docs
if __name__ == '__main__':
import os
pkg_dir = os.path.dirname(os.path.abspath(__file__))
main = os.path.join(pkg_dir, '__main__.py')
exec(open(main).read())