OSDN Git Service

When loading definitions ignore lines w/o "==".
authorSimon Forman <sforman@hushmail.com>
Sat, 21 Apr 2018 18:40:00 +0000 (11:40 -0700)
committerSimon Forman <sforman@hushmail.com>
Sat, 21 Apr 2018 18:40:00 +0000 (11:40 -0700)
joy/library.py

index 49b6699..90139cc 100644 (file)
@@ -244,7 +244,7 @@ class DefinitionWrapper(FunctionWrapper):
 
 
 def _text_to_defs(text):
-  return filter(None, (line.strip() for line in text.splitlines()))
+  return (line.strip() for line in text.splitlines() if '==' in line)
 
 
 #