aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-09-13 14:27:23 -0700
committerBen Pfaff <blp@nicira.com>2011-09-23 09:10:44 -0700
commit169390eed03f9854441ca76dc74fd906f614b761 (patch)
treecddb6124322d3fb33c7d1488de8e42e6c411a443 /python
parentcba641035b62a9459c5a111cb6f9467aa0252db0 (diff)
ovs.json: Remove commented-out debug code.
This must have slipped into an old commit by accident.
Diffstat (limited to 'python')
-rw-r--r--python/ovs/json.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/python/ovs/json.py b/python/ovs/json.py
index ba4d1784..2a3fd0d7 100644
--- a/python/ovs/json.py
+++ b/python/ovs/json.py
@@ -458,10 +458,7 @@ class Parser(object):
def __parser_input(self, token, string=None):
self.lex_state = Parser.__lex_start
self.buffer = ""
- #old_state = self.parse_state
self.parse_state(self, token, string)
- #print ("token=%s string=%s old_state=%s new_state=%s"
- # % (token, string, old_state, self.parse_state))
def __put_value(self, value):
top = self.stack[-1]