From a965cff14ab505be26704007a6b06b00aab3f31d Mon Sep 17 00:00:00 2001 From: Salvo 'LtWorf' Tomaselli Date: Mon, 1 Jun 2015 10:32:15 +0200 Subject: [PATCH] Removed unused module --- relational/query.py | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 relational/query.py diff --git a/relational/query.py b/relational/query.py deleted file mode 100644 index 2864c72..0000000 --- a/relational/query.py +++ /dev/null @@ -1,38 +0,0 @@ -# -*- coding: utf-8 -*- -# Relational -# Copyright (C) 2008 Salvo "LtWorf" Tomaselli -# -# Relational is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -# -# author Salvo "LtWorf" Tomaselli -# -# This module provides a classes to represent queries - -from relational import - - -class TypeException(Exception): - pass - - -class Query(object): - - def __init__(self, query): - self.query = query - self.tree = parser.tree(query) - # TODO self.query_code = parser - - self.optimized = None - self.optimized_query = None - self.optimized_code = None