Repository: beam Updated Branches: refs/heads/master 3eb76a751 -> 4bce39225
[BEAM-1345] Mark windowed value as experimental Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/c4d7ece2 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/c4d7ece2 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/c4d7ece2 Branch: refs/heads/master Commit: c4d7ece24fafbd3bdcc26d167058e3db2717421a Parents: 3eb76a7 Author: Sourabh Bajaj <[email protected]> Authored: Thu May 11 11:58:08 2017 -0700 Committer: Ahmet Altay <[email protected]> Committed: Thu May 11 12:25:26 2017 -0700 ---------------------------------------------------------------------- sdks/python/apache_beam/utils/windowed_value.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/c4d7ece2/sdks/python/apache_beam/utils/windowed_value.py ---------------------------------------------------------------------- diff --git a/sdks/python/apache_beam/utils/windowed_value.py b/sdks/python/apache_beam/utils/windowed_value.py index 87c26d1..be27854 100644 --- a/sdks/python/apache_beam/utils/windowed_value.py +++ b/sdks/python/apache_beam/utils/windowed_value.py @@ -16,10 +16,12 @@ # """Core windowing data structures. + +This module is experimental. No backwards-compatibility guarantees. """ # This module is carefully crafted to have optimal performance when -# compiled whiel still being valid Python. Care needs to be taken when +# compiled while still being valid Python. Care needs to be taken when # editing this file as WindowedValues are created for every element for # every step in a Beam pipeline.
