Sztuczna_Inteligencja/venv/Lib/site-packages/pygame/docs/__init__.py

13 lines
278 B
Python
Raw Normal View History

2019-04-10 10:31:09 +02: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')
execfile(main)