Sztuczna_Inteligencja/venv/Lib/site-packages/pygame/docs/__init__.py
2019-04-10 09:31:09 +01:00

13 lines
278 B
Python

# 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)