You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ro...@apache.org on 2016/11/07 21:25:49 UTC

[3/4] incubator-beam git commit: Fix cythonization

Fix cythonization


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/ef7e9727
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/ef7e9727
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/ef7e9727

Branch: refs/heads/python-sdk
Commit: ef7e972704e1ed8017fa484c2d204dacfc5161c0
Parents: 5d14b08
Author: Robert Bradshaw <ro...@google.com>
Authored: Mon Nov 7 13:24:40 2016 -0800
Committer: Robert Bradshaw <ro...@google.com>
Committed: Mon Nov 7 13:24:40 2016 -0800

----------------------------------------------------------------------
 sdks/python/apache_beam/coders/coder_impl.pxd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/ef7e9727/sdks/python/apache_beam/coders/coder_impl.pxd
----------------------------------------------------------------------
diff --git a/sdks/python/apache_beam/coders/coder_impl.pxd b/sdks/python/apache_beam/coders/coder_impl.pxd
index 194cbb8..e021c2e 100644
--- a/sdks/python/apache_beam/coders/coder_impl.pxd
+++ b/sdks/python/apache_beam/coders/coder_impl.pxd
@@ -59,8 +59,8 @@ cdef class CallbackCoderImpl(CoderImpl):
   cdef object _size_estimator
 
 
-cdef class DeterministicPickleCoderImpl(CoderImpl):
-  cdef CoderImpl _pickle_coder
+cdef class DeterministicFastPrimitivesCoderImpl(CoderImpl):
+  cdef CoderImpl _underlying_coder
   cdef object _step_label
   cdef bint _check_safe(self, value) except -1