Backup folder, add font, sprite, video and sdl2 modules, aliens.py working now

This commit is contained in:
Greentwip
2020-11-07 17:58:57 -07:00
parent 76fea31dc8
commit 2e51fe981d
1966 changed files with 695973 additions and 231 deletions

View File

@@ -0,0 +1,11 @@
import os.path
import sys
# If we are working on a development version of IDLE, we need to prepend the
# parent of this idlelib dir to sys.path. Otherwise, importing idlelib gets
# the version installed with the Python used to call this module:
idlelib_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
sys.path.insert(0, idlelib_dir)
import idlelib.PyShell
idlelib.PyShell.main()