Ignore build dir and pyc files.

This commit is contained in:
Simon Forman 2018-04-16 21:21:02 -07:00
parent 1e510de8ae
commit 9805f479be
2 changed files with 3 additions and 1 deletions

2
.hgignore Normal file
View File

@ -0,0 +1,2 @@
.*\.pyc$
build

View File

@ -34,7 +34,7 @@ _dictionary = {}
def inscribe(function): def inscribe(function):
'''A decorator to inscribe functions in to the default dictionary.''' '''A decorator to inscribe functions into the default dictionary.'''
_dictionary[function.name] = function _dictionary[function.name] = function
return function return function