Author: hammer
Date: Tue Jun 1 16:27:55 2010
New Revision: 950145
URL: http://svn.apache.org/viewvc?rev=950145&view=rev
Log:
AVRO-525. remove unused imports (Esteve Fernandez via hammer)
Modified:
avro/branches/branch-1.3/CHANGES.txt
avro/branches/branch-1.3/lang/py/src/avro/protocol.py
avro/branches/branch-1.3/lang/py/src/avro/tool.py
avro/branches/branch-1.3/lang/py/test/sample_http_client.py
avro/branches/branch-1.3/lang/py/test/sample_http_server.py
Modified: avro/branches/branch-1.3/CHANGES.txt
URL:
http://svn.apache.org/viewvc/avro/branches/branch-1.3/CHANGES.txt?rev=950145&r1=950144&r2=950145&view=diff
==============================================================================
--- avro/branches/branch-1.3/CHANGES.txt (original)
+++ avro/branches/branch-1.3/CHANGES.txt Tue Jun 1 16:27:55 2010
@@ -1,7 +1,13 @@
Avro Change Log
Avro 1.3.3 (Unreleased)
+
+ IMPROVEMENTS
+
+ AVRO-525. remove unused imports (Esteve Fernandez via hammer)
+
BUG FIXES
+
AVRO-496. python sample_http_client.py is broken (Jeff Hodges via hammer)
Avro 1.3.2 (31 March 2010)
Modified: avro/branches/branch-1.3/lang/py/src/avro/protocol.py
URL:
http://svn.apache.org/viewvc/avro/branches/branch-1.3/lang/py/src/avro/protocol.py?rev=950145&r1=950144&r2=950145&view=diff
==============================================================================
--- avro/branches/branch-1.3/lang/py/src/avro/protocol.py (original)
+++ avro/branches/branch-1.3/lang/py/src/avro/protocol.py Tue Jun 1 16:27:55
2010
@@ -16,7 +16,6 @@
"""
Protocol implementation.
"""
-import cStringIO
try:
import hashlib
except ImportError:
Modified: avro/branches/branch-1.3/lang/py/src/avro/tool.py
URL:
http://svn.apache.org/viewvc/avro/branches/branch-1.3/lang/py/src/avro/tool.py?rev=950145&r1=950144&r2=950145&view=diff
==============================================================================
--- avro/branches/branch-1.3/lang/py/src/avro/tool.py (original)
+++ avro/branches/branch-1.3/lang/py/src/avro/tool.py Tue Jun 1 16:27:55 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: avro/branches/branch-1.3/lang/py/test/sample_http_client.py
URL:
http://svn.apache.org/viewvc/avro/branches/branch-1.3/lang/py/test/sample_http_client.py?rev=950145&r1=950144&r2=950145&view=diff
==============================================================================
--- avro/branches/branch-1.3/lang/py/test/sample_http_client.py (original)
+++ avro/branches/branch-1.3/lang/py/test/sample_http_client.py Tue Jun 1
16:27:55 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: avro/branches/branch-1.3/lang/py/test/sample_http_server.py
URL:
http://svn.apache.org/viewvc/avro/branches/branch-1.3/lang/py/test/sample_http_server.py?rev=950145&r1=950144&r2=950145&view=diff
==============================================================================
--- avro/branches/branch-1.3/lang/py/test/sample_http_server.py (original)
+++ avro/branches/branch-1.3/lang/py/test/sample_http_server.py Tue Jun 1
16:27:55 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",