-- here is the PEP: http://legacy.python.org/dev/peps/pep-0263/ - Added /usr/bin/env python3 to some filesmaster
parent
3022978886
commit
911c7ef7ed
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
import pygame, random, os
|
import pygame, random, os
|
||||||
from support import operations
|
from support import operations
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
"""
|
"""
|
||||||
A class that represents a lawyer
|
A class that represents a lawyer
|
||||||
"""
|
"""
|
||||||
|
|
2
game.py
2
game.py
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Avocados and stuff
|
Avocados and stuff
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
import os, pygame
|
import os, pygame
|
||||||
from pygame.locals import *
|
from pygame.locals import *
|
||||||
|
|
1
itext.py
1
itext.py
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
import pygame
|
import pygame
|
||||||
from support.colors import *
|
from support.colors import *
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
import os, pygame
|
import os, pygame
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
from colors import *
|
from colors import *
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
# Name: Colors
|
# Name: Colors
|
||||||
# Purpose: Color library for Python/Pygame
|
# Purpose: Color library for Python/Pygame
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
# by Timothy Downs, inputbox written for my map editor
|
# by Timothy Downs, inputbox written for my map editor
|
||||||
|
|
||||||
# Edited to be python3 compatible by @SteveClement on Twitter
|
# Edited to be python3 compatible by @SteveClement on Twitter
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
import pygame
|
import pygame
|
||||||
|
|
||||||
def color_surface(surface, color):
|
def color_surface(surface, color):
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
# Move a single pixel around the screen without crashing against the borders.
|
# Move a single pixel around the screen without crashing against the borders.
|
||||||
# (and exit the program once crashed)
|
# (and exit the program once crashed)
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
import pygame
|
import pygame
|
||||||
from pygame.locals import *
|
from pygame.locals import *
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
import pygame
|
import pygame
|
||||||
from pygame.locals import *
|
from pygame.locals import *
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
from colors import *
|
from colors import *
|
||||||
from screen import *
|
from screen import *
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
import sys, time
|
import sys, time
|
||||||
from colors import *
|
from colors import *
|
||||||
from screen import *
|
from screen import *
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*- #
|
||||||
|
|
||||||
import urllib.request, sys, shutil, os
|
import urllib.request, sys, shutil, os
|
||||||
from colors import *
|
from colors import *
|
||||||
|
|
Loading…
Reference in New Issue