shithub: pokecrystal

Download patch

ref: 3b7089411bda77af8e0b0080a20c934e579ff1f8
parent: 12c06174d8af879377d5d6be35f474032316eb9b
author: Bryan Bishop <kanzure@gmail.com>
date: Sun Jan 27 12:07:17 EST 2013

add character encoding headers to other files

--- a/extras/move_constants.py
+++ b/extras/move_constants.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
 moves = {
 0x01: "POUND",
 0x02: "KARATE_CHOP",
--- a/extras/pointers.py
+++ b/extras/pointers.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 """ Various functions related to pointer and address math. Mostly to avoid
     depedency loops.
 """
--- a/extras/pokemon_constants.py
+++ b/extras/pokemon_constants.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
 pokemon_constants = {
 1: "BULBASAUR",
 2: "IVYSAUR",
--