OSDN Git Service

Ignore build dir and pyc files.
authorSimon Forman <sforman@hushmail.com>
Tue, 17 Apr 2018 04:21:02 +0000 (21:21 -0700)
committerSimon Forman <sforman@hushmail.com>
Tue, 17 Apr 2018 04:21:02 +0000 (21:21 -0700)
.hgignore [new file with mode: 0644]
joy/library.py

diff --git a/.hgignore b/.hgignore
new file mode 100644 (file)
index 0000000..29c3654
--- /dev/null
+++ b/.hgignore
@@ -0,0 +1,2 @@
+.*\.pyc$
+build
index d022516..49b6699 100644 (file)
@@ -34,7 +34,7 @@ _dictionary = {}
 
 
 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
   return function