You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by ha...@apache.org on 2010/09/13 01:48:19 UTC

svn commit: r996397 - in /avro/trunk: CHANGES.txt lang/py/src/avro/schema.py

Author: hammer
Date: Sun Sep 12 23:48:18 2010
New Revision: 996397

URL: http://svn.apache.org/viewvc?rev=996397&view=rev
Log:
AVRO-666. Remove an extraneous pdb.set_trace() that crept into schema.py
(hammer)


Modified:
    avro/trunk/CHANGES.txt
    avro/trunk/lang/py/src/avro/schema.py

Modified: avro/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/avro/trunk/CHANGES.txt?rev=996397&r1=996396&r2=996397&view=diff
==============================================================================
--- avro/trunk/CHANGES.txt (original)
+++ avro/trunk/CHANGES.txt Sun Sep 12 23:48:18 2010
@@ -10,6 +10,9 @@ Avro 1.4.1 (unreleased)
 
   BUG FIXES
 
+    AVRO-666. Remove an extraneous pdb.set_trace() that crept into schema.py
+    (hammer)
+
 Avro 1.4.0 (31 August 2010)
 
   INCOMPATIBLE CHANGES

Modified: avro/trunk/lang/py/src/avro/schema.py
URL: http://svn.apache.org/viewvc/avro/trunk/lang/py/src/avro/schema.py?rev=996397&r1=996396&r2=996397&view=diff
==============================================================================
--- avro/trunk/lang/py/src/avro/schema.py (original)
+++ avro/trunk/lang/py/src/avro/schema.py Sun Sep 12 23:48:18 2010
@@ -440,7 +440,6 @@ class ArraySchema(Schema):
         items_schema = make_avsc_object(items, names)
       except SchemaParseException, e:
         fail_msg = 'Items schema (%s) not a valid Avro schema: %s (known names: %s)' % (items, e, names.names.keys())
-        __import__("pdb").set_trace()
         raise SchemaParseException(fail_msg)
 
     self.set_prop('items', items_schema)