Author: hammer
Date: Fri May 7 07:36:19 2010
New Revision: 942018
URL: http://svn.apache.org/viewvc?rev=942018&view=rev
Log:
AVRO-525. remove unused imports (hammer via Esteve Fernandez)
Modified:
hadoop/avro/trunk/CHANGES.txt
hadoop/avro/trunk/lang/py/src/avro/protocol.py
hadoop/avro/trunk/lang/py/src/avro/tool.py
hadoop/avro/trunk/lang/py/test/sample_http_client.py
hadoop/avro/trunk/lang/py/test/sample_http_server.py
Modified: hadoop/avro/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/avro/trunk/CHANGES.txt?rev=942018&r1=942017&r2=942018&view=diff
==============================================================================
--- hadoop/avro/trunk/CHANGES.txt (original)
+++ hadoop/avro/trunk/CHANGES.txt Fri May 7 07:36:19 2010
@@ -31,6 +31,8 @@ Avro 1.4.0 (unreleased)
AVRO-511. Ruby implementation passes the rpc interop tests.
+ AVRO-525. remove unused imports (hammer via Esteve Fernandez)
+
BUG FIXES
AVRO-461. Skipping primitives in the ruby side (jmhodges)
Modified: hadoop/avro/trunk/lang/py/src/avro/protocol.py
URL:
http://svn.apache.org/viewvc/hadoop/avro/trunk/lang/py/src/avro/protocol.py?rev=942018&r1=942017&r2=942018&view=diff
==============================================================================
--- hadoop/avro/trunk/lang/py/src/avro/protocol.py (original)
+++ hadoop/avro/trunk/lang/py/src/avro/protocol.py Fri May 7 07:36:19 2010
@@ -16,7 +16,6 @@
"""
Protocol implementation.
"""
-import cStringIO
try:
import hashlib
except ImportError:
Modified: hadoop/avro/trunk/lang/py/src/avro/tool.py
URL:
http://svn.apache.org/viewvc/hadoop/avro/trunk/lang/py/src/avro/tool.py?rev=942018&r1=942017&r2=942018&view=diff
==============================================================================
--- hadoop/avro/trunk/lang/py/src/avro/tool.py (original)
+++ hadoop/avro/trunk/lang/py/src/avro/tool.py Fri May 7 07:36:19 2010
@@ -21,7 +21,6 @@ NOTE: The API for the command-line tool
"""
import sys
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler
-import httplib
import urlparse
from avro import io
from avro import datafile
Modified: hadoop/avro/trunk/lang/py/test/sample_http_client.py
URL:
http://svn.apache.org/viewvc/hadoop/avro/trunk/lang/py/test/sample_http_client.py?rev=942018&r1=942017&r2=942018&view=diff
==============================================================================
--- hadoop/avro/trunk/lang/py/test/sample_http_client.py (original)
+++ hadoop/avro/trunk/lang/py/test/sample_http_client.py Fri May 7 07:36:19
2010
@@ -15,12 +15,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-import httplib
import sys
from avro import ipc
from avro import protocol
-from avro import schema
MAIL_PROTOCOL_JSON = """\
{"namespace": "example.proto",
Modified: hadoop/avro/trunk/lang/py/test/sample_http_server.py
URL:
http://svn.apache.org/viewvc/hadoop/avro/trunk/lang/py/test/sample_http_server.py?rev=942018&r1=942017&r2=942018&view=diff
==============================================================================
--- hadoop/avro/trunk/lang/py/test/sample_http_server.py (original)
+++ hadoop/avro/trunk/lang/py/test/sample_http_server.py Fri May 7 07:36:19
2010
@@ -18,7 +18,6 @@
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
from avro import ipc
from avro import protocol
-from avro import schema
MAIL_PROTOCOL_JSON = """\
{"namespace": "example.proto",