basic pickle implementation #102

This commit is contained in:
David Halter
2013-01-11 22:00:03 +01:00
parent c923c93ccc
commit 1017db903c
7 changed files with 112 additions and 29 deletions

View File

@@ -376,7 +376,7 @@ class Script(object):
return None, 0
try:
timestamp, parser = cache.module_cache[self.source_path]
parser = cache.module_cache[self.source_path].parser
except KeyError:
return None, 0
part_parser = self._module.get_part_parser()