You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by fo...@apache.org on 2019/10/01 06:09:03 UTC

[avro] branch master updated: AVRO-2553: Remove unnecessary note from the Python docs (#643)

This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new c7c2c93  AVRO-2553: Remove unnecessary note from the Python docs (#643)
c7c2c93 is described below

commit c7c2c932e7a177f8d3fe163777351fe2de4a9842
Author: Kengo Seki <se...@apache.org>
AuthorDate: Mon Sep 30 23:08:57 2019 -0700

    AVRO-2553: Remove unnecessary note from the Python docs (#643)
---
 doc/src/content/xdocs/gettingstartedpython.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/doc/src/content/xdocs/gettingstartedpython.xml b/doc/src/content/xdocs/gettingstartedpython.xml
index 23e4add..fe74e69 100644
--- a/doc/src/content/xdocs/gettingstartedpython.xml
+++ b/doc/src/content/xdocs/gettingstartedpython.xml
@@ -187,8 +187,7 @@ writer = DataFileWriter(open("users.avro", "wb"), DatumWriter(), schema)
           <li>A <code>DatumWriter</code>, which is responsible for actually
           serializing the items to Avro's binary format
           (<code>DatumWriter</code>s can be used separately from
-          <code>DataFileWriter</code>s, e.g., to perform IPC with Avro
-          <strong>TODO: is this true??</strong>).</li>
+          <code>DataFileWriter</code>s, e.g., to perform IPC with Avro).</li>
           <li>The schema we're using.  The <code>DataFileWriter</code> needs the
           schema both to write the schema to the data file, and to verify that
           the items we write are valid items and write the appropriate