summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxi <xi@18f92427-320e-0410-9341-c67f048884a3>2008-12-04 11:27:55 +0000
committerxi <xi@18f92427-320e-0410-9341-c67f048884a3>2008-12-04 11:27:55 +0000
commite08b6dc4d30ce001eacdfc51addd7f2e9cc0389d (patch)
treef3a2f198c0e58bdb60df26c90f1f21f73ebc8d2d
parentcacfe9e557f8bac18ca3890d041b3468dd40e79e (diff)
downloadpyyaml-e08b6dc4d30ce001eacdfc51addd7f2e9cc0389d.tar.gz
Removed unused variable.
git-svn-id: http://svn.pyyaml.org/pyyaml/trunk@303 18f92427-320e-0410-9341-c67f048884a3
-rw-r--r--lib/yaml/constructor.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/yaml/constructor.py b/lib/yaml/constructor.py
index 34cc226..420c434 100644
--- a/lib/yaml/constructor.py
+++ b/lib/yaml/constructor.py
@@ -68,7 +68,6 @@ class BaseConstructor(object):
"found unconstructable recursive node", node.start_mark)
self.recursive_objects[node] = None
constructor = None
- state_constructor = None
tag_suffix = None
if node.tag in self.yaml_constructors:
constructor = self.yaml_constructors[node.tag]