From 17bf3db06ae2ff236fe3b333de9520b1e31bf257 Mon Sep 17 00:00:00 2001 From: yangxurong Date: Fri, 14 Feb 2014 16:55:01 +0800 Subject: [PATCH] Remove extraneous vim configuration comments Remove line containing comment - # vim: tabstop=4 shiftwidth=4 softtabstop=4 Change-Id: I7581cc88b8de433d5609ed06c6570b0b45c13573 Closes-Bug:#1229324 --- taskflow/__init__.py | 2 -- taskflow/atom.py | 2 -- taskflow/engines/__init__.py | 2 -- taskflow/engines/action_engine/__init__.py | 2 -- taskflow/engines/action_engine/engine.py | 2 -- taskflow/engines/action_engine/executor.py | 2 -- taskflow/engines/action_engine/graph_action.py | 2 -- taskflow/engines/action_engine/graph_analyzer.py | 2 -- taskflow/engines/action_engine/task_action.py | 2 -- taskflow/engines/base.py | 2 -- taskflow/engines/helpers.py | 2 -- taskflow/examples/build_a_car.py | 2 -- taskflow/examples/buildsystem.py | 2 -- taskflow/examples/calculate_in_parallel.py | 2 -- taskflow/examples/calculate_linear.py | 2 -- taskflow/examples/create_parallel_volume.py | 2 -- taskflow/examples/example_utils.py | 2 -- taskflow/examples/fake_billing.py | 2 -- taskflow/examples/graph_flow.py | 2 -- taskflow/examples/persistence_example.py | 2 -- taskflow/examples/resume_from_backend.py | 2 -- taskflow/examples/resume_many_flows.py | 2 -- taskflow/examples/resume_many_flows/my_flows.py | 2 -- taskflow/examples/resume_many_flows/resume_all.py | 2 -- taskflow/examples/resume_many_flows/run_flow.py | 2 -- taskflow/examples/resume_vm_boot.py | 2 -- taskflow/examples/resume_volume_create.py | 2 -- taskflow/examples/reverting_linear.py | 2 -- taskflow/examples/simple_linear.py | 2 -- taskflow/examples/simple_linear_listening.py | 2 -- taskflow/examples/wrapped_exception.py | 2 -- taskflow/exceptions.py | 2 -- taskflow/flow.py | 2 -- taskflow/jobs/__init__.py | 2 -- taskflow/jobs/job.py | 2 -- taskflow/jobs/jobboard.py | 2 -- taskflow/listeners/__init__.py | 2 -- taskflow/listeners/base.py | 2 -- taskflow/listeners/logging.py | 2 -- taskflow/listeners/printing.py | 2 -- taskflow/listeners/timing.py | 2 -- taskflow/patterns/__init__.py | 2 -- taskflow/patterns/graph_flow.py | 2 -- taskflow/patterns/linear_flow.py | 2 -- taskflow/patterns/unordered_flow.py | 2 -- taskflow/persistence/__init__.py | 2 -- taskflow/persistence/backends/__init__.py | 2 -- taskflow/persistence/backends/base.py | 2 -- taskflow/persistence/backends/impl_dir.py | 2 -- taskflow/persistence/backends/impl_memory.py | 2 -- taskflow/persistence/backends/impl_sqlalchemy.py | 2 -- taskflow/persistence/backends/impl_zookeeper.py | 2 -- taskflow/persistence/backends/sqlalchemy/__init__.py | 2 -- taskflow/persistence/backends/sqlalchemy/alembic/env.py | 2 -- .../alembic/versions/1c783c0c2875_replace_exception_an.py | 2 -- .../alembic/versions/1cea328f0f65_initial_logbook_deta.py | 2 -- taskflow/persistence/backends/sqlalchemy/migration.py | 2 -- taskflow/persistence/backends/sqlalchemy/models.py | 2 -- taskflow/persistence/logbook.py | 2 -- taskflow/states.py | 2 -- taskflow/storage.py | 2 -- taskflow/task.py | 2 -- taskflow/test.py | 2 -- taskflow/tests/__init__.py | 2 -- taskflow/tests/test_examples.py | 2 -- taskflow/tests/unit/__init__.py | 2 -- taskflow/tests/unit/persistence/__init__.py | 2 -- taskflow/tests/unit/persistence/base.py | 2 -- taskflow/tests/unit/persistence/test_dir_persistence.py | 2 -- taskflow/tests/unit/persistence/test_memory_persistence.py | 2 -- taskflow/tests/unit/persistence/test_sql_persistence.py | 2 -- taskflow/tests/unit/persistence/test_zake_persistence.py | 2 -- taskflow/tests/unit/persistence/test_zk_persistence.py | 2 -- taskflow/tests/unit/test_action_engine.py | 2 -- taskflow/tests/unit/test_arguments_passing.py | 2 -- taskflow/tests/unit/test_check_transition.py | 2 -- taskflow/tests/unit/test_duration.py | 2 -- taskflow/tests/unit/test_engine_helpers.py | 2 -- taskflow/tests/unit/test_flattening.py | 2 -- taskflow/tests/unit/test_flow_dependencies.py | 2 -- taskflow/tests/unit/test_functor_task.py | 2 -- taskflow/tests/unit/test_graph_flow.py | 2 -- taskflow/tests/unit/test_green_executor.py | 2 -- taskflow/tests/unit/test_progress.py | 2 -- taskflow/tests/unit/test_storage.py | 2 -- taskflow/tests/unit/test_suspend_flow.py | 2 -- taskflow/tests/unit/test_task.py | 2 -- taskflow/tests/unit/test_unordered_flow.py | 2 -- taskflow/tests/unit/test_utils.py | 2 -- taskflow/tests/unit/test_utils_async_utils.py | 2 -- taskflow/tests/unit/test_utils_binary.py | 2 -- taskflow/tests/unit/test_utils_failure.py | 2 -- taskflow/tests/unit/test_utils_lock_utils.py | 2 -- taskflow/tests/utils.py | 2 -- taskflow/utils/__init__.py | 2 -- taskflow/utils/async_utils.py | 2 -- taskflow/utils/eventlet_utils.py | 2 -- taskflow/utils/flow_utils.py | 2 -- taskflow/utils/graph_utils.py | 2 -- taskflow/utils/kazoo_utils.py | 2 -- taskflow/utils/lock_utils.py | 2 -- taskflow/utils/misc.py | 2 -- taskflow/utils/persistence_utils.py | 2 -- taskflow/utils/reflection.py | 2 -- taskflow/utils/threading_utils.py | 2 -- taskflow/version.py | 2 -- 106 files changed, 212 deletions(-) diff --git a/taskflow/__init__.py b/taskflow/__init__.py index 830dd2e7..b8e7fe5a 100644 --- a/taskflow/__init__.py +++ b/taskflow/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/atom.py b/taskflow/atom.py index 3e8c39ad..ee4fbdf2 100644 --- a/taskflow/atom.py +++ b/taskflow/atom.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Rackspace Hosting Inc. All Rights Reserved. # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # diff --git a/taskflow/engines/__init__.py b/taskflow/engines/__init__.py index 5bc17e36..942afd66 100644 --- a/taskflow/engines/__init__.py +++ b/taskflow/engines/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/engines/action_engine/__init__.py b/taskflow/engines/action_engine/__init__.py index 830dd2e7..b8e7fe5a 100644 --- a/taskflow/engines/action_engine/__init__.py +++ b/taskflow/engines/action_engine/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/engines/action_engine/engine.py b/taskflow/engines/action_engine/engine.py index 77cb7fd5..09495d4c 100644 --- a/taskflow/engines/action_engine/engine.py +++ b/taskflow/engines/action_engine/engine.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/engines/action_engine/executor.py b/taskflow/engines/action_engine/executor.py index 8d812a3c..1e23cb21 100644 --- a/taskflow/engines/action_engine/executor.py +++ b/taskflow/engines/action_engine/executor.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/engines/action_engine/graph_action.py b/taskflow/engines/action_engine/graph_action.py index 64c81519..8a7115bd 100644 --- a/taskflow/engines/action_engine/graph_action.py +++ b/taskflow/engines/action_engine/graph_action.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/engines/action_engine/graph_analyzer.py b/taskflow/engines/action_engine/graph_analyzer.py index 447c1425..0c2a7db8 100644 --- a/taskflow/engines/action_engine/graph_analyzer.py +++ b/taskflow/engines/action_engine/graph_analyzer.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/engines/action_engine/task_action.py b/taskflow/engines/action_engine/task_action.py index 7aa130a0..8d0654ff 100644 --- a/taskflow/engines/action_engine/task_action.py +++ b/taskflow/engines/action_engine/task_action.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/engines/base.py b/taskflow/engines/base.py index c907997f..3a7c261e 100644 --- a/taskflow/engines/base.py +++ b/taskflow/engines/base.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/engines/helpers.py b/taskflow/engines/helpers.py index 08d9795f..a4435487 100644 --- a/taskflow/engines/helpers.py +++ b/taskflow/engines/helpers.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/build_a_car.py b/taskflow/examples/build_a_car.py index 4385797f..7367c348 100644 --- a/taskflow/examples/build_a_car.py +++ b/taskflow/examples/build_a_car.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/buildsystem.py b/taskflow/examples/buildsystem.py index d717056d..c17628a5 100644 --- a/taskflow/examples/buildsystem.py +++ b/taskflow/examples/buildsystem.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/calculate_in_parallel.py b/taskflow/examples/calculate_in_parallel.py index cd119221..f179c3ee 100644 --- a/taskflow/examples/calculate_in_parallel.py +++ b/taskflow/examples/calculate_in_parallel.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/calculate_linear.py b/taskflow/examples/calculate_linear.py index 04dfda01..45c3f328 100644 --- a/taskflow/examples/calculate_linear.py +++ b/taskflow/examples/calculate_linear.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/create_parallel_volume.py b/taskflow/examples/create_parallel_volume.py index 7ca9d735..de511adf 100644 --- a/taskflow/examples/create_parallel_volume.py +++ b/taskflow/examples/create_parallel_volume.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/example_utils.py b/taskflow/examples/example_utils.py index d3069db6..46f542b8 100644 --- a/taskflow/examples/example_utils.py +++ b/taskflow/examples/example_utils.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/fake_billing.py b/taskflow/examples/fake_billing.py index d2f5e3f0..16829226 100644 --- a/taskflow/examples/fake_billing.py +++ b/taskflow/examples/fake_billing.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/graph_flow.py b/taskflow/examples/graph_flow.py index d56aa9fa..fd96d24a 100644 --- a/taskflow/examples/graph_flow.py +++ b/taskflow/examples/graph_flow.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/persistence_example.py b/taskflow/examples/persistence_example.py index 6ec51cb0..a8112a3d 100644 --- a/taskflow/examples/persistence_example.py +++ b/taskflow/examples/persistence_example.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/resume_from_backend.py b/taskflow/examples/resume_from_backend.py index dece074c..2108e440 100644 --- a/taskflow/examples/resume_from_backend.py +++ b/taskflow/examples/resume_from_backend.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/resume_many_flows.py b/taskflow/examples/resume_many_flows.py index 44cad4a2..08cc1740 100644 --- a/taskflow/examples/resume_many_flows.py +++ b/taskflow/examples/resume_many_flows.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/resume_many_flows/my_flows.py b/taskflow/examples/resume_many_flows/my_flows.py index 4cd81e6d..4ac5e250 100644 --- a/taskflow/examples/resume_many_flows/my_flows.py +++ b/taskflow/examples/resume_many_flows/my_flows.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/resume_many_flows/resume_all.py b/taskflow/examples/resume_many_flows/resume_all.py index 5cedcaf4..8be5f6d0 100644 --- a/taskflow/examples/resume_many_flows/resume_all.py +++ b/taskflow/examples/resume_many_flows/resume_all.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/resume_many_flows/run_flow.py b/taskflow/examples/resume_many_flows/run_flow.py index cbd2c2ec..a91b01bf 100644 --- a/taskflow/examples/resume_many_flows/run_flow.py +++ b/taskflow/examples/resume_many_flows/run_flow.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/resume_vm_boot.py b/taskflow/examples/resume_vm_boot.py index 7499c70a..90756f18 100644 --- a/taskflow/examples/resume_vm_boot.py +++ b/taskflow/examples/resume_vm_boot.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/resume_volume_create.py b/taskflow/examples/resume_volume_create.py index 8230f2b7..f6f90bbc 100644 --- a/taskflow/examples/resume_volume_create.py +++ b/taskflow/examples/resume_volume_create.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/reverting_linear.py b/taskflow/examples/reverting_linear.py index 3948ecfc..e6e5bb04 100644 --- a/taskflow/examples/reverting_linear.py +++ b/taskflow/examples/reverting_linear.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/simple_linear.py b/taskflow/examples/simple_linear.py index c9f6d11f..17fa587e 100644 --- a/taskflow/examples/simple_linear.py +++ b/taskflow/examples/simple_linear.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/simple_linear_listening.py b/taskflow/examples/simple_linear_listening.py index b1bc7c91..358f0ff2 100644 --- a/taskflow/examples/simple_linear_listening.py +++ b/taskflow/examples/simple_linear_listening.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/wrapped_exception.py b/taskflow/examples/wrapped_exception.py index cf1d8f7c..97178a83 100644 --- a/taskflow/examples/wrapped_exception.py +++ b/taskflow/examples/wrapped_exception.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/exceptions.py b/taskflow/exceptions.py index 1fa17675..8b37a15c 100644 --- a/taskflow/exceptions.py +++ b/taskflow/exceptions.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/flow.py b/taskflow/flow.py index 18c77fa7..e5f91480 100644 --- a/taskflow/flow.py +++ b/taskflow/flow.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/jobs/__init__.py b/taskflow/jobs/__init__.py index 3a554a5f..b6d087ba 100644 --- a/taskflow/jobs/__init__.py +++ b/taskflow/jobs/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Rackspace Hosting All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/jobs/job.py b/taskflow/jobs/job.py index 428f1763..c5439c07 100644 --- a/taskflow/jobs/job.py +++ b/taskflow/jobs/job.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Rackspace Hosting Inc. All Rights Reserved. # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # diff --git a/taskflow/jobs/jobboard.py b/taskflow/jobs/jobboard.py index 59fecccb..1a3be194 100644 --- a/taskflow/jobs/jobboard.py +++ b/taskflow/jobs/jobboard.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Rackspace Hosting Inc. All Rights Reserved. # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # diff --git a/taskflow/listeners/__init__.py b/taskflow/listeners/__init__.py index 408f9de3..da9e7d90 100644 --- a/taskflow/listeners/__init__.py +++ b/taskflow/listeners/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/listeners/base.py b/taskflow/listeners/base.py index 54319a82..bbf62c76 100644 --- a/taskflow/listeners/base.py +++ b/taskflow/listeners/base.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/listeners/logging.py b/taskflow/listeners/logging.py index 9c92f15b..f5aba7cc 100644 --- a/taskflow/listeners/logging.py +++ b/taskflow/listeners/logging.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/listeners/printing.py b/taskflow/listeners/printing.py index dff453bd..b8b2cf5d 100644 --- a/taskflow/listeners/printing.py +++ b/taskflow/listeners/printing.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/listeners/timing.py b/taskflow/listeners/timing.py index 1375cbec..d271b8fb 100644 --- a/taskflow/listeners/timing.py +++ b/taskflow/listeners/timing.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/patterns/__init__.py b/taskflow/patterns/__init__.py index 830dd2e7..b8e7fe5a 100644 --- a/taskflow/patterns/__init__.py +++ b/taskflow/patterns/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/patterns/graph_flow.py b/taskflow/patterns/graph_flow.py index ddd27fb9..1c9a9be2 100644 --- a/taskflow/patterns/graph_flow.py +++ b/taskflow/patterns/graph_flow.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/patterns/linear_flow.py b/taskflow/patterns/linear_flow.py index 8ce8070e..0befefb9 100644 --- a/taskflow/patterns/linear_flow.py +++ b/taskflow/patterns/linear_flow.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/patterns/unordered_flow.py b/taskflow/patterns/unordered_flow.py index 1274d367..9446622a 100644 --- a/taskflow/patterns/unordered_flow.py +++ b/taskflow/patterns/unordered_flow.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/persistence/__init__.py b/taskflow/persistence/__init__.py index fbe1837c..b24d6736 100644 --- a/taskflow/persistence/__init__.py +++ b/taskflow/persistence/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Rackspace Hosting Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/persistence/backends/__init__.py b/taskflow/persistence/backends/__init__.py index 605e9afc..37e214af 100644 --- a/taskflow/persistence/backends/__init__.py +++ b/taskflow/persistence/backends/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Rackspace Hosting Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/persistence/backends/base.py b/taskflow/persistence/backends/base.py index cdd8e710..4287c98a 100644 --- a/taskflow/persistence/backends/base.py +++ b/taskflow/persistence/backends/base.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Rackspace Hosting Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/persistence/backends/impl_dir.py b/taskflow/persistence/backends/impl_dir.py index d4772c7c..d938c679 100644 --- a/taskflow/persistence/backends/impl_dir.py +++ b/taskflow/persistence/backends/impl_dir.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # Copyright (C) 2013 Rackspace Hosting All Rights Reserved. # diff --git a/taskflow/persistence/backends/impl_memory.py b/taskflow/persistence/backends/impl_memory.py index 0c74675d..7d295978 100644 --- a/taskflow/persistence/backends/impl_memory.py +++ b/taskflow/persistence/backends/impl_memory.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # Copyright (C) 2013 Rackspace Hosting All Rights Reserved. # diff --git a/taskflow/persistence/backends/impl_sqlalchemy.py b/taskflow/persistence/backends/impl_sqlalchemy.py index 127c8216..c9f9acf9 100644 --- a/taskflow/persistence/backends/impl_sqlalchemy.py +++ b/taskflow/persistence/backends/impl_sqlalchemy.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # Copyright (C) 2013 Rackspace Hosting All Rights Reserved. # diff --git a/taskflow/persistence/backends/impl_zookeeper.py b/taskflow/persistence/backends/impl_zookeeper.py index 3ede5938..9055445c 100644 --- a/taskflow/persistence/backends/impl_zookeeper.py +++ b/taskflow/persistence/backends/impl_zookeeper.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2014 AT&T Labs All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/persistence/backends/sqlalchemy/__init__.py b/taskflow/persistence/backends/sqlalchemy/__init__.py index 275e7e13..16edb425 100644 --- a/taskflow/persistence/backends/sqlalchemy/__init__.py +++ b/taskflow/persistence/backends/sqlalchemy/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # Copyright (C) 2013 Rackspace Hosting All Rights Reserved. # diff --git a/taskflow/persistence/backends/sqlalchemy/alembic/env.py b/taskflow/persistence/backends/sqlalchemy/alembic/env.py index 615c5d71..a864ac07 100644 --- a/taskflow/persistence/backends/sqlalchemy/alembic/env.py +++ b/taskflow/persistence/backends/sqlalchemy/alembic/env.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/persistence/backends/sqlalchemy/alembic/versions/1c783c0c2875_replace_exception_an.py b/taskflow/persistence/backends/sqlalchemy/alembic/versions/1c783c0c2875_replace_exception_an.py index 075355d9..133911fd 100644 --- a/taskflow/persistence/backends/sqlalchemy/alembic/versions/1c783c0c2875_replace_exception_an.py +++ b/taskflow/persistence/backends/sqlalchemy/alembic/versions/1c783c0c2875_replace_exception_an.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/persistence/backends/sqlalchemy/alembic/versions/1cea328f0f65_initial_logbook_deta.py b/taskflow/persistence/backends/sqlalchemy/alembic/versions/1cea328f0f65_initial_logbook_deta.py index 293bf0c9..6f529cef 100644 --- a/taskflow/persistence/backends/sqlalchemy/alembic/versions/1cea328f0f65_initial_logbook_deta.py +++ b/taskflow/persistence/backends/sqlalchemy/alembic/versions/1cea328f0f65_initial_logbook_deta.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/persistence/backends/sqlalchemy/migration.py b/taskflow/persistence/backends/sqlalchemy/migration.py index 52ac7c95..6d91e346 100644 --- a/taskflow/persistence/backends/sqlalchemy/migration.py +++ b/taskflow/persistence/backends/sqlalchemy/migration.py @@ -1,5 +1,3 @@ -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright 2010 United States Government as represented by the # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. diff --git a/taskflow/persistence/backends/sqlalchemy/models.py b/taskflow/persistence/backends/sqlalchemy/models.py index abf1f994..8de004e1 100644 --- a/taskflow/persistence/backends/sqlalchemy/models.py +++ b/taskflow/persistence/backends/sqlalchemy/models.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # Copyright (C) 2013 Rackspace Hosting Inc. All Rights Reserved. # diff --git a/taskflow/persistence/logbook.py b/taskflow/persistence/logbook.py index e1e7ba9b..8a39f2cd 100644 --- a/taskflow/persistence/logbook.py +++ b/taskflow/persistence/logbook.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # Copyright (C) 2013 Rackspace Hosting All Rights Reserved. # diff --git a/taskflow/states.py b/taskflow/states.py index 74b47a04..6889ab1b 100644 --- a/taskflow/states.py +++ b/taskflow/states.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/storage.py b/taskflow/storage.py index bea79072..cdff7692 100644 --- a/taskflow/storage.py +++ b/taskflow/storage.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/task.py b/taskflow/task.py index e6dacef9..4815ef55 100644 --- a/taskflow/task.py +++ b/taskflow/task.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Rackspace Hosting Inc. All Rights Reserved. # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # diff --git a/taskflow/test.py b/taskflow/test.py index 1da10aac..cf684ad4 100644 --- a/taskflow/test.py +++ b/taskflow/test.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/__init__.py b/taskflow/tests/__init__.py index 830dd2e7..b8e7fe5a 100644 --- a/taskflow/tests/__init__.py +++ b/taskflow/tests/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/test_examples.py b/taskflow/tests/test_examples.py index d5cdbf08..50404216 100644 --- a/taskflow/tests/test_examples.py +++ b/taskflow/tests/test_examples.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/__init__.py b/taskflow/tests/unit/__init__.py index 830dd2e7..b8e7fe5a 100644 --- a/taskflow/tests/unit/__init__.py +++ b/taskflow/tests/unit/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/persistence/__init__.py b/taskflow/tests/unit/persistence/__init__.py index 830dd2e7..b8e7fe5a 100644 --- a/taskflow/tests/unit/persistence/__init__.py +++ b/taskflow/tests/unit/persistence/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/persistence/base.py b/taskflow/tests/unit/persistence/base.py index cb9e0f4e..42b028b3 100644 --- a/taskflow/tests/unit/persistence/base.py +++ b/taskflow/tests/unit/persistence/base.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Rackspace Hosting All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/persistence/test_dir_persistence.py b/taskflow/tests/unit/persistence/test_dir_persistence.py index ee40635a..713a1f8c 100644 --- a/taskflow/tests/unit/persistence/test_dir_persistence.py +++ b/taskflow/tests/unit/persistence/test_dir_persistence.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Rackspace Hosting All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/persistence/test_memory_persistence.py b/taskflow/tests/unit/persistence/test_memory_persistence.py index 111c8c33..a4d02c44 100644 --- a/taskflow/tests/unit/persistence/test_memory_persistence.py +++ b/taskflow/tests/unit/persistence/test_memory_persistence.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Rackspace Hosting All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/persistence/test_sql_persistence.py b/taskflow/tests/unit/persistence/test_sql_persistence.py index 453c2a7a..e10d872d 100644 --- a/taskflow/tests/unit/persistence/test_sql_persistence.py +++ b/taskflow/tests/unit/persistence/test_sql_persistence.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Rackspace Hosting All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/persistence/test_zake_persistence.py b/taskflow/tests/unit/persistence/test_zake_persistence.py index 2be24ca8..91f04f9d 100644 --- a/taskflow/tests/unit/persistence/test_zake_persistence.py +++ b/taskflow/tests/unit/persistence/test_zake_persistence.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2014 AT&T Labs All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/persistence/test_zk_persistence.py b/taskflow/tests/unit/persistence/test_zk_persistence.py index a094736a..a32f16cf 100644 --- a/taskflow/tests/unit/persistence/test_zk_persistence.py +++ b/taskflow/tests/unit/persistence/test_zk_persistence.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2014 AT&T Labs All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_action_engine.py b/taskflow/tests/unit/test_action_engine.py index ef0baddc..901384f8 100644 --- a/taskflow/tests/unit/test_action_engine.py +++ b/taskflow/tests/unit/test_action_engine.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_arguments_passing.py b/taskflow/tests/unit/test_arguments_passing.py index fdaea623..79b5a7b9 100644 --- a/taskflow/tests/unit/test_arguments_passing.py +++ b/taskflow/tests/unit/test_arguments_passing.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_check_transition.py b/taskflow/tests/unit/test_check_transition.py index aa1b6a43..0d532e4d 100644 --- a/taskflow/tests/unit/test_check_transition.py +++ b/taskflow/tests/unit/test_check_transition.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_duration.py b/taskflow/tests/unit/test_duration.py index 420d162e..b2b636c5 100644 --- a/taskflow/tests/unit/test_duration.py +++ b/taskflow/tests/unit/test_duration.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_engine_helpers.py b/taskflow/tests/unit/test_engine_helpers.py index ead98ddf..99d1d18d 100644 --- a/taskflow/tests/unit/test_engine_helpers.py +++ b/taskflow/tests/unit/test_engine_helpers.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_flattening.py b/taskflow/tests/unit/test_flattening.py index 232b0734..becbd738 100644 --- a/taskflow/tests/unit/test_flattening.py +++ b/taskflow/tests/unit/test_flattening.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_flow_dependencies.py b/taskflow/tests/unit/test_flow_dependencies.py index 5d326307..fb6a6e29 100644 --- a/taskflow/tests/unit/test_flow_dependencies.py +++ b/taskflow/tests/unit/test_flow_dependencies.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_functor_task.py b/taskflow/tests/unit/test_functor_task.py index 4f2ae398..53db4c96 100644 --- a/taskflow/tests/unit/test_functor_task.py +++ b/taskflow/tests/unit/test_functor_task.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_graph_flow.py b/taskflow/tests/unit/test_graph_flow.py index 8ca0f8b1..7aac75c9 100644 --- a/taskflow/tests/unit/test_graph_flow.py +++ b/taskflow/tests/unit/test_graph_flow.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_green_executor.py b/taskflow/tests/unit/test_green_executor.py index f57dbbab..3524a9c2 100644 --- a/taskflow/tests/unit/test_green_executor.py +++ b/taskflow/tests/unit/test_green_executor.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_progress.py b/taskflow/tests/unit/test_progress.py index b713bdbb..c74aeab0 100644 --- a/taskflow/tests/unit/test_progress.py +++ b/taskflow/tests/unit/test_progress.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_storage.py b/taskflow/tests/unit/test_storage.py index 72227e3b..90962995 100644 --- a/taskflow/tests/unit/test_storage.py +++ b/taskflow/tests/unit/test_storage.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_suspend_flow.py b/taskflow/tests/unit/test_suspend_flow.py index 145e627d..eeda19f0 100644 --- a/taskflow/tests/unit/test_suspend_flow.py +++ b/taskflow/tests/unit/test_suspend_flow.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_task.py b/taskflow/tests/unit/test_task.py index aade9349..92c86cb9 100644 --- a/taskflow/tests/unit/test_task.py +++ b/taskflow/tests/unit/test_task.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_unordered_flow.py b/taskflow/tests/unit/test_unordered_flow.py index e7c210a6..d824f50b 100644 --- a/taskflow/tests/unit/test_unordered_flow.py +++ b/taskflow/tests/unit/test_unordered_flow.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_utils.py b/taskflow/tests/unit/test_utils.py index 05303245..4be4646d 100644 --- a/taskflow/tests/unit/test_utils.py +++ b/taskflow/tests/unit/test_utils.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_utils_async_utils.py b/taskflow/tests/unit/test_utils_async_utils.py index 4d5ad1e1..32944c22 100644 --- a/taskflow/tests/unit/test_utils_async_utils.py +++ b/taskflow/tests/unit/test_utils_async_utils.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_utils_binary.py b/taskflow/tests/unit/test_utils_binary.py index 8b14ee70..92c496a2 100644 --- a/taskflow/tests/unit/test_utils_binary.py +++ b/taskflow/tests/unit/test_utils_binary.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2014 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_utils_failure.py b/taskflow/tests/unit/test_utils_failure.py index 44cd4b4a..394abfd2 100644 --- a/taskflow/tests/unit/test_utils_failure.py +++ b/taskflow/tests/unit/test_utils_failure.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_utils_lock_utils.py b/taskflow/tests/unit/test_utils_lock_utils.py index 80037b85..c99b9750 100644 --- a/taskflow/tests/unit/test_utils_lock_utils.py +++ b/taskflow/tests/unit/test_utils_lock_utils.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2014 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/utils.py b/taskflow/tests/utils.py index d695d115..48a5fd32 100644 --- a/taskflow/tests/utils.py +++ b/taskflow/tests/utils.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/utils/__init__.py b/taskflow/utils/__init__.py index 408f9de3..da9e7d90 100644 --- a/taskflow/utils/__init__.py +++ b/taskflow/utils/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/utils/async_utils.py b/taskflow/utils/async_utils.py index 76cc6f62..4805230e 100644 --- a/taskflow/utils/async_utils.py +++ b/taskflow/utils/async_utils.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/utils/eventlet_utils.py b/taskflow/utils/eventlet_utils.py index a9971a69..6cafa5b5 100644 --- a/taskflow/utils/eventlet_utils.py +++ b/taskflow/utils/eventlet_utils.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/utils/flow_utils.py b/taskflow/utils/flow_utils.py index 8ba4e719..21685d16 100644 --- a/taskflow/utils/flow_utils.py +++ b/taskflow/utils/flow_utils.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/utils/graph_utils.py b/taskflow/utils/graph_utils.py index f0c2020c..7f18134c 100644 --- a/taskflow/utils/graph_utils.py +++ b/taskflow/utils/graph_utils.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/utils/kazoo_utils.py b/taskflow/utils/kazoo_utils.py index 0bd91402..bf30b5d7 100644 --- a/taskflow/utils/kazoo_utils.py +++ b/taskflow/utils/kazoo_utils.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2014 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/utils/lock_utils.py b/taskflow/utils/lock_utils.py index c1a73355..8c70f506 100644 --- a/taskflow/utils/lock_utils.py +++ b/taskflow/utils/lock_utils.py @@ -1,5 +1,3 @@ -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright 2011 OpenStack Foundation. # All Rights Reserved. # diff --git a/taskflow/utils/misc.py b/taskflow/utils/misc.py index 0f50ad4b..6880a3aa 100644 --- a/taskflow/utils/misc.py +++ b/taskflow/utils/misc.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # Copyright (C) 2013 Rackspace Hosting All Rights Reserved. # diff --git a/taskflow/utils/persistence_utils.py b/taskflow/utils/persistence_utils.py index a1fd26fc..c2d51034 100644 --- a/taskflow/utils/persistence_utils.py +++ b/taskflow/utils/persistence_utils.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/utils/reflection.py b/taskflow/utils/reflection.py index a7d200cc..9d36def8 100644 --- a/taskflow/utils/reflection.py +++ b/taskflow/utils/reflection.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/utils/threading_utils.py b/taskflow/utils/threading_utils.py index 0542633d..d9493d8d 100644 --- a/taskflow/utils/threading_utils.py +++ b/taskflow/utils/threading_utils.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/version.py b/taskflow/version.py index e4779809..1777ba62 100644 --- a/taskflow/version.py +++ b/taskflow/version.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may