summaryrefslogtreecommitdiff
path: root/taskflow
diff options
context:
space:
mode:
authoryangxurong <yangxurong@huawei.com>2014-02-14 16:55:01 +0800
committeryangxurong <yangxurong@huawei.com>2014-02-14 16:56:50 +0800
commit17bf3db06ae2ff236fe3b333de9520b1e31bf257 (patch)
tree76b64387a23a0f4079b02bd2a5a54a7a30125520 /taskflow
parent0cd1005741485509279870f72f43933190712d26 (diff)
downloadtaskflow-17bf3db06ae2ff236fe3b333de9520b1e31bf257.tar.gz
Remove extraneous vim configuration comments
Remove line containing comment - # vim: tabstop=4 shiftwidth=4 softtabstop=4 Change-Id: I7581cc88b8de433d5609ed06c6570b0b45c13573 Closes-Bug:#1229324
Diffstat (limited to 'taskflow')
-rw-r--r--taskflow/__init__.py2
-rw-r--r--taskflow/atom.py2
-rw-r--r--taskflow/engines/__init__.py2
-rw-r--r--taskflow/engines/action_engine/__init__.py2
-rw-r--r--taskflow/engines/action_engine/engine.py2
-rw-r--r--taskflow/engines/action_engine/executor.py2
-rw-r--r--taskflow/engines/action_engine/graph_action.py2
-rw-r--r--taskflow/engines/action_engine/graph_analyzer.py2
-rw-r--r--taskflow/engines/action_engine/task_action.py2
-rw-r--r--taskflow/engines/base.py2
-rw-r--r--taskflow/engines/helpers.py2
-rw-r--r--taskflow/examples/build_a_car.py2
-rw-r--r--taskflow/examples/buildsystem.py2
-rw-r--r--taskflow/examples/calculate_in_parallel.py2
-rw-r--r--taskflow/examples/calculate_linear.py2
-rw-r--r--taskflow/examples/create_parallel_volume.py2
-rw-r--r--taskflow/examples/example_utils.py2
-rw-r--r--taskflow/examples/fake_billing.py2
-rw-r--r--taskflow/examples/graph_flow.py2
-rw-r--r--taskflow/examples/persistence_example.py2
-rw-r--r--taskflow/examples/resume_from_backend.py2
-rw-r--r--taskflow/examples/resume_many_flows.py2
-rw-r--r--taskflow/examples/resume_many_flows/my_flows.py2
-rw-r--r--taskflow/examples/resume_many_flows/resume_all.py2
-rw-r--r--taskflow/examples/resume_many_flows/run_flow.py2
-rw-r--r--taskflow/examples/resume_vm_boot.py2
-rw-r--r--taskflow/examples/resume_volume_create.py2
-rw-r--r--taskflow/examples/reverting_linear.py2
-rw-r--r--taskflow/examples/simple_linear.py2
-rw-r--r--taskflow/examples/simple_linear_listening.py2
-rw-r--r--taskflow/examples/wrapped_exception.py2
-rw-r--r--taskflow/exceptions.py2
-rw-r--r--taskflow/flow.py2
-rw-r--r--taskflow/jobs/__init__.py2
-rw-r--r--taskflow/jobs/job.py2
-rw-r--r--taskflow/jobs/jobboard.py2
-rw-r--r--taskflow/listeners/__init__.py2
-rw-r--r--taskflow/listeners/base.py2
-rw-r--r--taskflow/listeners/logging.py2
-rw-r--r--taskflow/listeners/printing.py2
-rw-r--r--taskflow/listeners/timing.py2
-rw-r--r--taskflow/patterns/__init__.py2
-rw-r--r--taskflow/patterns/graph_flow.py2
-rw-r--r--taskflow/patterns/linear_flow.py2
-rw-r--r--taskflow/patterns/unordered_flow.py2
-rw-r--r--taskflow/persistence/__init__.py2
-rw-r--r--taskflow/persistence/backends/__init__.py2
-rw-r--r--taskflow/persistence/backends/base.py2
-rw-r--r--taskflow/persistence/backends/impl_dir.py2
-rw-r--r--taskflow/persistence/backends/impl_memory.py2
-rw-r--r--taskflow/persistence/backends/impl_sqlalchemy.py2
-rw-r--r--taskflow/persistence/backends/impl_zookeeper.py2
-rw-r--r--taskflow/persistence/backends/sqlalchemy/__init__.py2
-rw-r--r--taskflow/persistence/backends/sqlalchemy/alembic/env.py2
-rw-r--r--taskflow/persistence/backends/sqlalchemy/alembic/versions/1c783c0c2875_replace_exception_an.py2
-rw-r--r--taskflow/persistence/backends/sqlalchemy/alembic/versions/1cea328f0f65_initial_logbook_deta.py2
-rw-r--r--taskflow/persistence/backends/sqlalchemy/migration.py2
-rw-r--r--taskflow/persistence/backends/sqlalchemy/models.py2
-rw-r--r--taskflow/persistence/logbook.py2
-rw-r--r--taskflow/states.py2
-rw-r--r--taskflow/storage.py2
-rw-r--r--taskflow/task.py2
-rw-r--r--taskflow/test.py2
-rw-r--r--taskflow/tests/__init__.py2
-rw-r--r--taskflow/tests/test_examples.py2
-rw-r--r--taskflow/tests/unit/__init__.py2
-rw-r--r--taskflow/tests/unit/persistence/__init__.py2
-rw-r--r--taskflow/tests/unit/persistence/base.py2
-rw-r--r--taskflow/tests/unit/persistence/test_dir_persistence.py2
-rw-r--r--taskflow/tests/unit/persistence/test_memory_persistence.py2
-rw-r--r--taskflow/tests/unit/persistence/test_sql_persistence.py2
-rw-r--r--taskflow/tests/unit/persistence/test_zake_persistence.py2
-rw-r--r--taskflow/tests/unit/persistence/test_zk_persistence.py2
-rw-r--r--taskflow/tests/unit/test_action_engine.py2
-rw-r--r--taskflow/tests/unit/test_arguments_passing.py2
-rw-r--r--taskflow/tests/unit/test_check_transition.py2
-rw-r--r--taskflow/tests/unit/test_duration.py2
-rw-r--r--taskflow/tests/unit/test_engine_helpers.py2
-rw-r--r--taskflow/tests/unit/test_flattening.py2
-rw-r--r--taskflow/tests/unit/test_flow_dependencies.py2
-rw-r--r--taskflow/tests/unit/test_functor_task.py2
-rw-r--r--taskflow/tests/unit/test_graph_flow.py2
-rw-r--r--taskflow/tests/unit/test_green_executor.py2
-rw-r--r--taskflow/tests/unit/test_progress.py2
-rw-r--r--taskflow/tests/unit/test_storage.py2
-rw-r--r--taskflow/tests/unit/test_suspend_flow.py2
-rw-r--r--taskflow/tests/unit/test_task.py2
-rw-r--r--taskflow/tests/unit/test_unordered_flow.py2
-rw-r--r--taskflow/tests/unit/test_utils.py2
-rw-r--r--taskflow/tests/unit/test_utils_async_utils.py2
-rw-r--r--taskflow/tests/unit/test_utils_binary.py2
-rw-r--r--taskflow/tests/unit/test_utils_failure.py2
-rw-r--r--taskflow/tests/unit/test_utils_lock_utils.py2
-rw-r--r--taskflow/tests/utils.py2
-rw-r--r--taskflow/utils/__init__.py2
-rw-r--r--taskflow/utils/async_utils.py2
-rw-r--r--taskflow/utils/eventlet_utils.py2
-rw-r--r--taskflow/utils/flow_utils.py2
-rw-r--r--taskflow/utils/graph_utils.py2
-rw-r--r--taskflow/utils/kazoo_utils.py2
-rw-r--r--taskflow/utils/lock_utils.py2
-rw-r--r--taskflow/utils/misc.py2
-rw-r--r--taskflow/utils/persistence_utils.py2
-rw-r--r--taskflow/utils/reflection.py2
-rw-r--r--taskflow/utils/threading_utils.py2
-rw-r--r--taskflow/version.py2
106 files changed, 0 insertions, 212 deletions
diff --git a/taskflow/__init__.py b/taskflow/__init__.py
index 830dd2e..b8e7fe5 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 3e8c39a..ee4fbdf 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 5bc17e3..942afd6 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 830dd2e..b8e7fe5 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 77cb7fd..09495d4 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 8d812a3..1e23cb2 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 64c8151..8a7115b 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 447c142..0c2a7db 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 7aa130a..8d0654f 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 c907997..3a7c261 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 08d9795..a443548 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 4385797..7367c34 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 d717056..c17628a 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 cd11922..f179c3e 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 04dfda0..45c3f32 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 7ca9d73..de511ad 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 d3069db..46f542b 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 d2f5e3f..1682922 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 d56aa9f..fd96d24 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 6ec51cb..a8112a3 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 dece074..2108e44 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 44cad4a..08cc174 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 4cd81e6..4ac5e25 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 5cedcaf..8be5f6d 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 cbd2c2e..a91b01b 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 7499c70..90756f1 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 8230f2b..f6f90bb 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 3948ecf..e6e5bb0 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 c9f6d11..17fa587 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 b1bc7c9..358f0ff 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 cf1d8f7..97178a8 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 1fa1767..8b37a15 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 18c77fa..e5f9148 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 3a554a5..b6d087b 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 428f176..c5439c0 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 59feccc..1a3be19 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 408f9de..da9e7d9 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 54319a8..bbf62c7 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 9c92f15..f5aba7c 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 dff453b..b8b2cf5 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 1375cbe..d271b8f 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 830dd2e..b8e7fe5 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 ddd27fb..1c9a9be 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 8ce8070..0befefb 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 1274d36..9446622 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 fbe1837..b24d673 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 605e9af..37e214a 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 cdd8e71..4287c98 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 d4772c7..d938c67 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 0c74675..7d29597 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 127c821..c9f9acf 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 3ede593..9055445 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 275e7e1..16edb42 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 615c5d7..a864ac0 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 075355d..133911f 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 293bf0c..6f529ce 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 52ac7c9..6d91e34 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 abf1f99..8de004e 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 e1e7ba9..8a39f2c 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 74b47a0..6889ab1 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 bea7907..cdff769 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 e6dacef..4815ef5 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 1da10aa..cf684ad 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 830dd2e..b8e7fe5 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 d5cdbf0..5040421 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 830dd2e..b8e7fe5 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 830dd2e..b8e7fe5 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 cb9e0f4..42b028b 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 ee40635..713a1f8 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 111c8c3..a4d02c4 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 453c2a7..e10d872 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 2be24ca..91f04f9 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 a094736..a32f16c 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 ef0badd..901384f 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 fdaea62..79b5a7b 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 aa1b6a4..0d532e4 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 420d162..b2b636c 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 ead98dd..99d1d18 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 232b073..becbd73 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 5d32630..fb6a6e2 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 4f2ae39..53db4c9 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 8ca0f8b..7aac75c 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 f57dbba..3524a9c 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 b713bdb..c74aeab 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 72227e3..9096299 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 145e627..eeda19f 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 aade934..92c86cb 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 e7c210a..d824f50 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 0530324..4be4646 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 4d5ad1e..32944c2 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 8b14ee7..92c496a 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 44cd4b4..394abfd 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 80037b8..c99b975 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 d695d11..48a5fd3 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 408f9de..da9e7d9 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 76cc6f6..4805230 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 a9971a6..6cafa5b 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 8ba4e71..21685d1 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 f0c2020..7f18134 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 0bd9140..bf30b5d 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 c1a7335..8c70f50 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 0f50ad4..6880a3a 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 a1fd26f..c2d5103 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 a7d200c..9d36def 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 0542633..d9493d8 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 e477980..1777ba6 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