Repository: incubator-beam Updated Branches: refs/heads/python-sdk b4fc20e44 -> 9060f8395
Make create() avaialable to pure python callers Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/081aa975 Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/081aa975 Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/081aa975 Branch: refs/heads/python-sdk Commit: 081aa975c80187bdb0abaaa1e6ed2445b1e31b84 Parents: 50afc87 Author: Ahmet Altay <[email protected]> Authored: Mon Nov 21 16:19:22 2016 -0800 Committer: Ahmet Altay <[email protected]> Committed: Mon Nov 21 16:19:22 2016 -0800 ---------------------------------------------------------------------- sdks/python/apache_beam/utils/windowed_value.pxd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/081aa975/sdks/python/apache_beam/utils/windowed_value.pxd ---------------------------------------------------------------------- diff --git a/sdks/python/apache_beam/utils/windowed_value.pxd b/sdks/python/apache_beam/utils/windowed_value.pxd index 41c2986..5544baf 100644 --- a/sdks/python/apache_beam/utils/windowed_value.pxd +++ b/sdks/python/apache_beam/utils/windowed_value.pxd @@ -34,5 +34,5 @@ cdef class WindowedValue(object): cdef inline bint _typed_eq(WindowedValue left, WindowedValue right) except? -2 @cython.locals(wv=WindowedValue) -cdef WindowedValue create( +cpdef WindowedValue create( object value, int64_t timestamp_micros, object windows)
